package com.steerinfo.ems.emsprodplanround.service; import com.steerinfo.framework.service.IBaseService; import com.steerinfo.ems.emsprodplanround.model.EmsProdplanRound; import java.util.Date; import java.math.BigDecimal; import java.util.HashMap; import java.util.List; /** * EmsProdplanRound服务接口: * @author generator * @version 1.0-SNAPSHORT 2021-07-06 03:43 * 类描述 * 修订历史: * 日期:2021-07-06 * 作者:generator * 参考: * 描述:EmsProdplanRound服务接口 * @see null * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved. */ public interface IEmsProdplanRoundService extends IBaseService{ EmsProdplanRound getbeyondWeight(HashMap parmas); EmsProdplanRound getSumPlanWeight(List ids); //获取编号 String getMaxidAsGm(EmsProdplanRound emsProdplanRound); //获取编号 String getMaxidAsSC(EmsProdplanRound emsProdplanRound); //获取宽度*长度 List getlengthTimesWidth(); //获取断面 List getiateralArea(); //获取断面 List getdimension(); //获取表面质量标准 ListgetsurfaceStandard(); }