IEmsProdplanRoundWeightService.java 872 B

1234567891011121314151617181920212223242526
  1. package com.steerinfo.ems.emsprodplanroundweight.service;
  2. import com.steerinfo.framework.service.IBaseService;
  3. import com.steerinfo.ems.emsprodplanroundweight.model.EmsProdplanRoundWeight;
  4. import java.text.ParseException;
  5. /**
  6. * EmsProdplanRoundWeight服务接口:
  7. * @author generator
  8. * @version 1.0-SNAPSHORT 2021-12-01 04:14
  9. * 类描述
  10. * 修订历史:
  11. * 日期:2021-12-01
  12. * 作者:generator
  13. * 参考:
  14. * 描述:EmsProdplanRoundWeight服务接口
  15. * @see null
  16. * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved.
  17. */
  18. public interface IEmsProdplanRoundWeightService extends IBaseService<EmsProdplanRoundWeight, String>{
  19. public void getWeightForLg() throws ParseException;
  20. public void getWeightForLg半年() throws ParseException;
  21. public void getWeightForGx() throws ParseException;
  22. }