|
@@ -118,16 +118,10 @@ public class Mould extends Model<Mould> {
|
|
private String area;
|
|
private String area;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 工厂id
|
|
|
|
|
|
+ * 生产方公司名称
|
|
*/
|
|
*/
|
|
- @TableField("factory_id")
|
|
|
|
- private Integer factoryId;
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 工厂名称
|
|
|
|
- */
|
|
|
|
- @TableField("factory_name")
|
|
|
|
- private String factoryName;
|
|
|
|
|
|
+ @TableField("project_company_name")
|
|
|
|
+ private String produceCompanyName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 初始模次(保养设定次数)
|
|
* 初始模次(保养设定次数)
|
|
@@ -298,21 +292,6 @@ public class Mould extends Model<Mould> {
|
|
this.area = area;
|
|
this.area = area;
|
|
}
|
|
}
|
|
|
|
|
|
- public Integer getFactoryId() {
|
|
|
|
- return factoryId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFactoryId(Integer factoryId) {
|
|
|
|
- this.factoryId = factoryId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getFactoryName() {
|
|
|
|
- return factoryName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFactoryName(String factoryName) {
|
|
|
|
- this.factoryName = factoryName;
|
|
|
|
- }
|
|
|
|
|
|
|
|
public Integer getInitialModulus() {
|
|
public Integer getInitialModulus() {
|
|
return initialModulus;
|
|
return initialModulus;
|
|
@@ -375,6 +354,18 @@ public class Mould extends Model<Mould> {
|
|
return this.id;
|
|
return this.id;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
|
+ return serialVersionUID;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getProduceCompanyName() {
|
|
|
|
+ return produceCompanyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setProduceCompanyName(String produceCompanyName) {
|
|
|
|
+ this.produceCompanyName = produceCompanyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "Mould{" +
|
|
return "Mould{" +
|
|
@@ -394,8 +385,6 @@ public class Mould extends Model<Mould> {
|
|
", rfid=" + rfid +
|
|
", rfid=" + rfid +
|
|
", settingLife=" + settingLife +
|
|
", settingLife=" + settingLife +
|
|
", area=" + area +
|
|
", area=" + area +
|
|
- ", factoryId=" + factoryId +
|
|
|
|
- ", factoryName=" + factoryName +
|
|
|
|
", initialModulus=" + initialModulus +
|
|
", initialModulus=" + initialModulus +
|
|
", equipmentId=" + equipmentId +
|
|
", equipmentId=" + equipmentId +
|
|
", belongProjectGrade=" + belongProjectGrade +
|
|
", belongProjectGrade=" + belongProjectGrade +
|