企业修改toString

dongdingding
杜函宇 1 year ago
parent e8d3718ac2
commit 3626eecc3f

@ -59,25 +59,20 @@ public class BmsEnterpriseBasicInfo extends BaseInfoEntity {
/**
* 01
*/
@Excel(name = "是否删除0未删除1已删除")
@Excel(name = "是否删除",readConverterExp = "0=未删除,1=已删除")
private Long isDeleted;
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("enterpriseName", getEnterpriseName())
.append("creditCode", getCreditCode())
.append("contacts", getContacts())
.append("contactsNumber", getContactsNumber())
.append("address", getAddress())
.append("isDeleted", getIsDeleted())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.toString();
return "BmsEnterpriseBasicInfo{" +
"id=" + id +
", enterpriseName='" + enterpriseName + '\'' +
", creditCode='" + creditCode + '\'' +
", contacts='" + contacts + '\'' +
", contactsNumber='" + contactsNumber + '\'' +
", address='" + address + '\'' +
", isDeleted=" + isDeleted +
'}';
}
}

Loading…
Cancel
Save