|
@@ -59,21 +59,21 @@ public class ProductConfig extends Entity<Long> {
|
|
|
/**
|
|
|
* 生产方式
|
|
|
*/
|
|
|
- @ApiModelProperty(value = "生产方式")
|
|
|
- @Length(max = 50, message = "生产方式长度不能超过50")
|
|
|
- @TableField(value = "pc_type", condition = LIKE)
|
|
|
- @Excel(name = "生产方式")
|
|
|
- @NotBlank(message = "生产方式不可为空")
|
|
|
- private String pcType;
|
|
|
+// @ApiModelProperty(value = "生产方式")
|
|
|
+// @Length(max = 50, message = "生产方式长度不能超过50")
|
|
|
+// @TableField(value = "pc_type", condition = LIKE)
|
|
|
+// @Excel(name = "生产方式")
|
|
|
+// @NotBlank(message = "生产方式不可为空")
|
|
|
+// private String pcType;
|
|
|
|
|
|
- /**
|
|
|
- * 生产时间(秒)
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "生产时间(秒)")
|
|
|
- @TableField("pc_time")
|
|
|
- @Excel(name = "生产时间(秒)")
|
|
|
- @NotNull(message = "生产时间不可为空")
|
|
|
- private Long pcTime;
|
|
|
+// /**
|
|
|
+// * 生产时间(秒)
|
|
|
+// */
|
|
|
+// @ApiModelProperty(value = "生产时间(秒)")
|
|
|
+// @TableField("pc_time")
|
|
|
+// @Excel(name = "生产时间(秒)")
|
|
|
+// @NotNull(message = "生产时间不可为空")
|
|
|
+// private Long pcTime;
|
|
|
|
|
|
/**
|
|
|
* 生产配方
|
|
@@ -104,8 +104,8 @@ public class ProductConfig extends Entity<Long> {
|
|
|
this.updateUser = updateUser;
|
|
|
this.pcSpeId = pcSpeId;
|
|
|
this.pcSepcName = pcSepcName;
|
|
|
- this.pcType = pcType;
|
|
|
- this.pcTime = pcTime;
|
|
|
+// this.pcType = pcType;
|
|
|
+// this.pcTime = pcTime;
|
|
|
this.pcStatus = pcStatus;
|
|
|
}
|
|
|
|