MES—POJO实体复制+Dao层少了@Service注释+任务生成详细日志+交易处理组件:出入库:目的库位的数量累加依据改为目的质量状态
parent
c99125b1a1
commit
bb14454170
@ -0,0 +1,41 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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;
|
||||
|
||||
/**
|
||||
* @Description : 工站队列
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2019-05-22 17:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_WORK_CELL_POINT")
|
||||
@Api("工站队列")
|
||||
public class MesWorkCellPoint extends BaseBean {
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "QUEUE_SEQ")
|
||||
@ApiParam("队列主表序号")
|
||||
private String queueSeq;
|
||||
|
||||
@Column(name = "QUEUE_DETAIL_SEQ")
|
||||
@ApiParam("队列明细表序号")
|
||||
private String queueDetailSeq;
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : JIT队列列表Model
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2019-05-22 16:34
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("JIT队列列表Model")
|
||||
public class QueueOrderModel implements Serializable {
|
||||
@ApiParam("队列ID")
|
||||
public Long queueId;
|
||||
@ApiParam("队列明细ID")
|
||||
public Long queueDetailId;
|
||||
@ApiParam("队列序号")
|
||||
public Integer queueSeq;
|
||||
@ApiParam("队列明细序号")
|
||||
public Integer queDetailSeq;
|
||||
@ApiParam("客户标识号")
|
||||
public String custFlagNo;
|
||||
@ApiParam("产品配置名称")
|
||||
public String prodCfgName;
|
||||
@ApiParam("产品类型名称")
|
||||
public String categoryName;
|
||||
@ApiParam("产品条码")
|
||||
public String serialNumber;
|
||||
@ApiParam("物料号")
|
||||
public String partNo;
|
||||
@ApiParam("物料ID")
|
||||
public Long partId;
|
||||
@ApiParam("条码状态")
|
||||
public Integer snStatus;
|
||||
@ApiParam("生产类型")
|
||||
public String workType;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue