|
@ -22,7 +22,6 @@ public class PurchaseQuoteChild extends BaseEntity |
|
|
/** 关联报价编号字段 */ |
|
|
/** 关联报价编号字段 */ |
|
|
@Excel(name = "关联报价编号字段") |
|
|
@Excel(name = "关联报价编号字段") |
|
|
private String purchaseQuoteCode; |
|
|
private String purchaseQuoteCode; |
|
|
|
|
|
|
|
|
/** 物料表中的id */ |
|
|
/** 物料表中的id */ |
|
|
@Excel(name = "物料表中的id") |
|
|
@Excel(name = "物料表中的id") |
|
|
private Long materialId; |
|
|
private Long materialId; |
|
@ -288,7 +287,22 @@ public class PurchaseQuoteChild extends BaseEntity |
|
|
{ |
|
|
{ |
|
|
return delFlag; |
|
|
return delFlag; |
|
|
} |
|
|
} |
|
|
|
|
|
private String purchasePlanCode; |
|
|
|
|
|
public void setPurchasePlanCode(String purchasePlanCode) { |
|
|
|
|
|
this.purchasePlanCode = purchasePlanCode; |
|
|
|
|
|
} |
|
|
|
|
|
public String getPurchasePlanCode() { |
|
|
|
|
|
return purchasePlanCode; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private String correlationCode; |
|
|
|
|
|
|
|
|
|
|
|
public void setCorrelationCode(String correlationCode) { |
|
|
|
|
|
this.correlationCode = correlationCode; |
|
|
|
|
|
} |
|
|
|
|
|
public String getCorrelationCode() { |
|
|
|
|
|
return correlationCode; |
|
|
|
|
|
} |
|
|
@Override |
|
|
@Override |
|
|
public String toString() { |
|
|
public String toString() { |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
@ -320,11 +334,5 @@ public class PurchaseQuoteChild extends BaseEntity |
|
|
.append("delFlag", getDelFlag()) |
|
|
.append("delFlag", getDelFlag()) |
|
|
.toString(); |
|
|
.toString(); |
|
|
} |
|
|
} |
|
|
private String purchasePlanCode; |
|
|
|
|
|
public String setPurchasePlanCode(String purchasePlanCode) { |
|
|
|
|
|
return this.purchasePlanCode = purchasePlanCode; |
|
|
|
|
|
} |
|
|
|
|
|
public String getPurchasePlanCode() { |
|
|
|
|
|
return purchasePlanCode; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|