|
@@ -56,6 +56,31 @@ public class BBom extends Entity<Long> {
|
|
|
@Excel(name = "审核状态(0-新增1-待审核2-审核通过3-审核不通过)")
|
|
|
private String auditStatus;
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "零件编号")
|
|
|
+ @Length(max = 128, message = "零件编号长度不能超过128")
|
|
|
+ @TableField(value = "parts_no", condition = LIKE)
|
|
|
+ @Excel(name = "零件编号")
|
|
|
+ private String partsNo;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "零件代号")
|
|
|
+ @Length(max = 128, message = "零件代号长度不能超过128")
|
|
|
+ @TableField(value = "parts_alias", condition = LIKE)
|
|
|
+ @Excel(name = "零件代号")
|
|
|
+ private String partsAlias;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "产品代号")
|
|
|
+ @Length(max = 128, message = "产品代号长度不能超过128")
|
|
|
+ @TableField(value = "bom_alias", condition = LIKE)
|
|
|
+ @Excel(name = "产品代号")
|
|
|
+ private String bomAlias;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 父id
|
|
|
*/
|