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