Merge remote-tracking branch 'origin/test' into test
commit
76cf0be79d
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.tj;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 总装实际产量model
|
||||
* @Author: wangjie
|
||||
* @Date: 2020/10/28 2:56 PM
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class AssemblyRealWorkModel {
|
||||
|
||||
@ApiParam("生产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("实际产量")
|
||||
private Double realProdQty;
|
||||
|
||||
@ApiParam("实际目标")
|
||||
private Double realPlanQty;
|
||||
|
||||
@ApiParam("班产目标")
|
||||
private Double shiftPlanQty;
|
||||
|
||||
@ApiParam("本班达成率")
|
||||
private Integer shiftPassPercent;
|
||||
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.report;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProduceSn;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 产品条码返回model
|
||||
* @author xiangming.liao
|
||||
* @version 1.0
|
||||
* @date 2021/01/06 10:43
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("产品条码返回model")
|
||||
public class CosmaReportProductSnModel extends MesProduceSn implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 5217363746963291483L;
|
||||
@ApiParam("条码类型Name")
|
||||
private String snTypeName;
|
||||
|
||||
}
|
Loading…
Reference in New Issue