update 配方信息字段添加

master
yinq 3 days ago
parent 789c27cc87
commit f193b796c4

@ -38,7 +38,7 @@ public class ProdRecipeInfo extends TenantEntity {
/**
* ID
*/
private String materialId;
private Long materialId;
/**
*

@ -76,7 +76,7 @@ public class ProdRecipeWeight extends TenantEntity {
/**
*
*/
private String fatherCode;
private Long fatherCode;
/**
*
@ -86,7 +86,7 @@ public class ProdRecipeWeight extends TenantEntity {
/**
*
*/
private String childCode;
private Long childCode;
/**
* 使

@ -31,13 +31,12 @@ public class ProdRecipeInfoBo extends BaseEntity {
/**
* ID
*/
@NotNull(message = "机台ID不能为空", groups = { AddGroup.class, EditGroup.class })
private Long machineId;
/**
* ID
*/
private String materialId;
private Long materialId;
/**
*
@ -167,7 +166,6 @@ public class ProdRecipeInfoBo extends BaseEntity {
/**
*
*/
@NotNull(message = "辊温温差不能为空", groups = { AddGroup.class, EditGroup.class })
private Long rollTempdiff;
/**
@ -183,19 +181,16 @@ public class ProdRecipeInfoBo extends BaseEntity {
/**
*
*/
@NotBlank(message = "操作者不能为空", groups = { AddGroup.class, EditGroup.class })
private String operCode;
/**
*
*/
@NotBlank(message = "备注不能为空", groups = { AddGroup.class, EditGroup.class })
private String memNote;
/**
*
*/
@NotBlank(message = "配方编码不能为空", groups = { AddGroup.class, EditGroup.class })
private String recipeCode;
/**
@ -266,13 +261,11 @@ public class ProdRecipeInfoBo extends BaseEntity {
/**
*
*/
@NotNull(message = "审核日期不能为空", groups = { AddGroup.class, EditGroup.class })
private Date auditDate;
/**
*
*/
@NotBlank(message = "配方字典不能为空", groups = { AddGroup.class, EditGroup.class })
private String recipeDic;
/**

@ -47,7 +47,7 @@ public class ProdRecipeInfoVo implements Serializable {
* ID
*/
@ExcelProperty(value = "物料ID")
private String materialId;
private Long materialId;
/**
*
@ -401,5 +401,27 @@ public class ProdRecipeInfoVo implements Serializable {
@ExcelProperty(value = "排胶控制")
private Long pjcontrl;
/**
*
*/
@ExcelProperty(value = "创建人")
private Long createBy;
/**
*
*/
@ExcelProperty(value = "创建时间")
private Date createTime;
/**
*
*/
@ExcelProperty(value = "更新人")
private Long updateBy;
/**
*
*/
@ExcelProperty(value = "更新时间")
private Date updateTime;
}

@ -93,7 +93,7 @@ public class ProdRecipeWeightVo implements Serializable {
*
*/
@ExcelProperty(value = "父级编码")
private String fatherCode;
private Long fatherCode;
/**
*
@ -105,7 +105,7 @@ public class ProdRecipeWeightVo implements Serializable {
*
*/
@ExcelProperty(value = "子级编码")
private String childCode;
private Long childCode;
/**
* 使

Loading…
Cancel
Save