|
@ -379,40 +379,45 @@ public class SysCustomerQuote extends BaseEntity |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public String toString() { |
|
|
public String toString() { |
|
|
return Objects.toStringHelper(this) |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
.add("id", id) |
|
|
.append("id", getId()) |
|
|
.add("supplierCode", supplierCode) |
|
|
.append("supplierCode", getSupplierCode()) |
|
|
.add("customerCode", customerCode) |
|
|
.append("businessMembers", getBusinessMembers()) |
|
|
.add("customerName", customerName) |
|
|
.append("customerCode", getCustomerCode()) |
|
|
.add("pricingDate", pricingDate) |
|
|
.append("customerName", getCustomerName()) |
|
|
.add("enterprise", enterprise) |
|
|
.append("enterprise", getEnterprise()) |
|
|
.add("enterpriseSum", enterpriseSum) |
|
|
.append("pricingDate", getPricingDate()) |
|
|
.add("commonCurrency", commonCurrency) |
|
|
.append("enterpriseSum", getEnterpriseSum()) |
|
|
.add("confirmFax", confirmFax) |
|
|
.append("commonCurrency", getCommonCurrency()) |
|
|
.add("rmbTax", rmbTax) |
|
|
.append("usdTax", getUsdTax()) |
|
|
.add("usdTax", usdTax) |
|
|
.append("confirmFax", getConfirmFax()) |
|
|
.add("noRmbSum", noRmbSum) |
|
|
.append("noRmbSum", getNoRmbSum()) |
|
|
.add("noRmb", noRmb) |
|
|
.append("rmbTax", getRmbTax()) |
|
|
.add("rmb", rmb) |
|
|
.append("rmbSum", getRmbSum()) |
|
|
.add("rmbSum", rmbSum) |
|
|
.append("noUsdSum", getNoUsdSum()) |
|
|
.add("noUsd", noUsd) |
|
|
.append("usdSum", getUsdSum()) |
|
|
.add("noUsdSum", noUsdSum) |
|
|
.append("rmb", getRmb()) |
|
|
.add("usd", usd) |
|
|
.append("deginFlag", getDeginFlag()) |
|
|
.add("usdSum", usdSum) |
|
|
.append("noRmb", getNoRmb()) |
|
|
.add("businessMembers", businessMembers) |
|
|
.append("delFlag", getDelFlag()) |
|
|
.add("deginFlag", deginFlag) |
|
|
.append("createBy", getCreateBy()) |
|
|
.add("delFlag", delFlag) |
|
|
.append("noUsd", getNoUsd()) |
|
|
.add("auditStatus", auditStatus) |
|
|
.append("createTime", getCreateTime()) |
|
|
.add("useStatus", useStatus) |
|
|
.append("updateBy", getUpdateBy()) |
|
|
.add("applyUser", applyUser) |
|
|
.append("usd", getUsd()) |
|
|
.add("applyTime", applyTime) |
|
|
.append("updateTime", getUpdateTime()) |
|
|
.add("submitInstanceId", submitInstanceId) |
|
|
.append("remark", getRemark()) |
|
|
.add("applyTitle", applyTitle) |
|
|
.append("useStatus", getUseStatus()) |
|
|
.add("instanceId", instanceId) |
|
|
.append("auditStatus", getAuditStatus()) |
|
|
.add("instanceType", instanceType) |
|
|
.append("instanceId", getInstanceId()) |
|
|
.add("cancelInstanceId", cancelInstanceId) |
|
|
.append("instanceType", getInstanceType()) |
|
|
.add("restoreInstanceId", restoreInstanceId) |
|
|
.append("submitInstanceId", getSubmitInstanceId()) |
|
|
.add("sysCustomerQuoteChildList", sysCustomerQuoteChildList) |
|
|
.append("cancelInstanceId", getCancelInstanceId()) |
|
|
|
|
|
.append("restoreInstanceId", getRestoreInstanceId()) |
|
|
|
|
|
.append("applyTitle", getApplyTitle()) |
|
|
|
|
|
.append("applyUser", getApplyUser()) |
|
|
|
|
|
.append("applyTime", getApplyTime()) |
|
|
|
|
|
.append("sysCustomerQuoteChildList", getSysCustomerQuoteChildList()) |
|
|
.toString(); |
|
|
.toString(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|