|
@@ -105,7 +105,7 @@ public class MesNotice extends Entity<Long> {
|
|
private String status;
|
|
private String status;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 订单编号
|
|
|
|
|
|
+ * 订单详情
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value = "订单详情")
|
|
@ApiModelProperty(value = "订单详情")
|
|
@Length(max = 512, message = "订单编号长度不能超过512")
|
|
@Length(max = 512, message = "订单编号长度不能超过512")
|
|
@@ -113,6 +113,15 @@ public class MesNotice extends Entity<Long> {
|
|
@Excel(name = "订单详情")
|
|
@Excel(name = "订单详情")
|
|
private String orderInfo;
|
|
private String orderInfo;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 报工数量
|
|
|
|
+ */
|
|
|
|
+ @ApiModelProperty(value = "报工数量")
|
|
|
|
+ @Length(max = 255, message = "报工数量长度不能超过255")
|
|
|
|
+ @TableField(value = "work_report", condition = LIKE)
|
|
|
|
+ @Excel(name = "报工数量")
|
|
|
|
+ private String workReport;
|
|
|
|
+
|
|
@ApiModelProperty(value = "数据来源")
|
|
@ApiModelProperty(value = "数据来源")
|
|
@Length(max = 512, message = "订单编号长度不能超过512")
|
|
@Length(max = 512, message = "订单编号长度不能超过512")
|
|
@TableField(value = "source", condition = LIKE)
|
|
@TableField(value = "source", condition = LIKE)
|
|
@@ -142,7 +151,7 @@ public class MesNotice extends Entity<Long> {
|
|
|
|
|
|
|
|
|
|
@Builder
|
|
@Builder
|
|
- public MesNotice(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, String buType, String lineCode, String apiAddress, String apiType, int apiSort, String orderNo, String status, String orderInfo,String source, String targetSource, String acceptPar, String userCode, String batchNo) {
|
|
|
|
|
|
+ public MesNotice(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, String buType, String lineCode, String apiAddress, String apiType, int apiSort, String orderNo, String status, String orderInfo,String source, String targetSource, String acceptPar, String userCode, String batchNo, String workReport) {
|
|
super(id, createTime, createUser, updateTime, updateUser);
|
|
super(id, createTime, createUser, updateTime, updateUser);
|
|
this.id = id;
|
|
this.id = id;
|
|
this.buType = buType;
|
|
this.buType = buType;
|
|
@@ -158,5 +167,6 @@ public class MesNotice extends Entity<Long> {
|
|
this.acceptPar = acceptPar;
|
|
this.acceptPar = acceptPar;
|
|
this.userCode = userCode;
|
|
this.userCode = userCode;
|
|
this.batchNo = batchNo;
|
|
this.batchNo = batchNo;
|
|
|
|
+ this.workReport = workReport;
|
|
}
|
|
}
|
|
}
|
|
}
|