|
@@ -103,14 +103,14 @@ public class TWorkpiece extends Entity {
|
|
|
@ApiModelProperty(value = "bom_name")
|
|
|
@NotEmpty(message = "bom_name不能为空")
|
|
|
@Length(max = 32, message = "bom_name长度不能超过32")
|
|
|
- @TableField(exist = false)
|
|
|
+// @TableField(exist = false)
|
|
|
@Excel(name = "bom_name")
|
|
|
private String bomName;
|
|
|
|
|
|
@ApiModelProperty(value = "bom_no")
|
|
|
@NotEmpty(message = "bom_no不能为空")
|
|
|
@Length(max = 32, message = "bom_no长度不能超过32")
|
|
|
- @TableField(exist = false)
|
|
|
+// @TableField(exist = false)
|
|
|
@Excel(name = "bom_no")
|
|
|
private String bomNo;
|
|
|
|
|
@@ -130,6 +130,32 @@ public class TWorkpiece extends Entity {
|
|
|
@Excel(name = "plan_no")
|
|
|
private String planNo;
|
|
|
|
|
|
+ @ApiModelProperty(value = "库位ID")
|
|
|
+ @TableField("storge_id")
|
|
|
+ @Excel(name = "库位ID")
|
|
|
+ private Long storgeId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "点位ID")
|
|
|
+ @Length(max = 4, message = "点位ID")
|
|
|
+ @TableField(value = "point_id", condition = LIKE)
|
|
|
+ private String pointId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "订单名称")
|
|
|
+ @Length(max = 256, message = "订单名称")
|
|
|
+ @TableField(value = "order_name", condition = LIKE)
|
|
|
+ private String orderName;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "工序ID")
|
|
|
+ private Long procedureId;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "工序名称")
|
|
|
+ @Length(max = 256, message = "工序名称")
|
|
|
+ @TableField(value = "procedure_name", condition = LIKE)
|
|
|
+ private String procedureNmae;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@Builder
|
|
|
public TWorkpiece(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser,
|