Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
7bca216063
@ -0,0 +1,48 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Author: jokelin
|
||||||
|
* @Date: 2020/4/20 4:49 下午
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_BOARD_CUSTOM_PARAM_CFG")
|
||||||
|
@Api("MES_看板自定义参数配置")
|
||||||
|
public class MesBoardCustomParamCfg extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 3932883827194753734L;
|
||||||
|
|
||||||
|
@Column(name = "BOARD_CODE")
|
||||||
|
@ApiParam("看板代码")
|
||||||
|
private String boardCode;
|
||||||
|
|
||||||
|
@Column(name = "PARAM_CODE")
|
||||||
|
@ApiParam("参数代码")
|
||||||
|
private String paramCode;
|
||||||
|
|
||||||
|
@Column(name = "PARAM_NAME")
|
||||||
|
@ApiParam("参数名称")
|
||||||
|
private String paramName;
|
||||||
|
|
||||||
|
@Column(name = "PARAM_VALUE")
|
||||||
|
@ApiParam("参数值")
|
||||||
|
private String paramValue;
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class MgnBoardAreaYieldModel {
|
||||||
|
|
||||||
|
@ApiParam("组装")
|
||||||
|
private MgnBoardListModel assembleBoardListModel;
|
||||||
|
|
||||||
|
@ApiParam("涂装")
|
||||||
|
private MgnBoardListModel paintBoardListModel;
|
||||||
|
|
||||||
|
@ApiParam("注塑")
|
||||||
|
private MgnBoardListModel injectMoldBoardListModel;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class MgnBoardAssembleCompRateModel {
|
||||||
|
|
||||||
|
@ApiParam("产线")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("合格率目标值")
|
||||||
|
private String qualifiedRateTargetValue;
|
||||||
|
|
||||||
|
@ApiParam("完成率")
|
||||||
|
private String planCompleteRate;
|
||||||
|
|
||||||
|
@ApiParam("合格率偏差值")
|
||||||
|
private String fpyDeviationValue;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class MgnBoardListModel {
|
||||||
|
|
||||||
|
@ApiParam("产线产量汇总")
|
||||||
|
private List<MgnBoardYieldModel> centerYieldList;
|
||||||
|
|
||||||
|
@ApiParam("月度产量汇总")
|
||||||
|
private List<MgnBoardYieldModel> monthlyYieldList;
|
||||||
|
|
||||||
|
@ApiParam("当班计划产量")
|
||||||
|
private Double shiftPlanYield;
|
||||||
|
|
||||||
|
@ApiParam("当班实际产量")
|
||||||
|
private Double shiftActualYield;
|
||||||
|
|
||||||
|
@ApiParam("计划完成率")
|
||||||
|
private String planCompleteRate;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class MgnBoardYieldModel {
|
||||||
|
|
||||||
|
@ApiParam("工作中心")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("日期")
|
||||||
|
private String date;
|
||||||
|
|
||||||
|
@ApiParam("计划产量")
|
||||||
|
private Double planYield;
|
||||||
|
|
||||||
|
@ApiParam("实际产量")
|
||||||
|
private Double actualYield;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesBoardCustomParamCfg;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jack.jia
|
||||||
|
* @CreateDate : 2019-04-02
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesBoardCustomParamCfgRepository extends BaseRepository<MesBoardCustomParamCfg, Long> {
|
||||||
|
}
|
@ -0,0 +1,71 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @质检完成状态模型
|
||||||
|
* @author jason.niu
|
||||||
|
* @date 2020/10/16
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Api("质检完成状态模型")
|
||||||
|
public class WmsQCStatusModel {
|
||||||
|
|
||||||
|
@ApiParam("工厂代码")
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("ASN单号")
|
||||||
|
private String asnOrderNo;
|
||||||
|
|
||||||
|
@ApiParam("质检单号")
|
||||||
|
private String qcOrderNo;
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@ApiParam("标准质检时间(分钟)")
|
||||||
|
private Double stdQcTime;
|
||||||
|
|
||||||
|
@ApiParam("收货时间")
|
||||||
|
private String receiveTime;
|
||||||
|
|
||||||
|
@ApiParam("计划质检完成时间")
|
||||||
|
private String planCompleteTime;
|
||||||
|
|
||||||
|
@ApiParam("实际质检完成实际")
|
||||||
|
private String actualCompleteTime;
|
||||||
|
|
||||||
|
@ApiParam("状态")
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
@ApiParam("开始时间")
|
||||||
|
private String startDateTime;
|
||||||
|
|
||||||
|
@ApiParam("结束时间")
|
||||||
|
private String endDateTime;
|
||||||
|
|
||||||
|
@ApiParam("零件数量")
|
||||||
|
private Double qty;
|
||||||
|
|
||||||
|
@ApiParam("待质检比例")
|
||||||
|
private Double proportion;
|
||||||
|
|
||||||
|
@ApiParam("标准质检时间")
|
||||||
|
private Integer stdCheckTime;
|
||||||
|
|
||||||
|
public WmsQCStatusModel(String asnOrderNo, String qcOrderNo, String partNo, String partName, Double stdQcTime, Double qty, Double proportion, Integer stdCheckTime) {
|
||||||
|
this.asnOrderNo = asnOrderNo;
|
||||||
|
this.qcOrderNo = qcOrderNo;
|
||||||
|
this.partNo = partNo;
|
||||||
|
this.partName = partName;
|
||||||
|
this.stdQcTime = stdQcTime;
|
||||||
|
this.qty = qty;
|
||||||
|
this.proportion = proportion;
|
||||||
|
this.stdCheckTime = stdCheckTime;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue