|
|
|
@ -59,25 +59,20 @@ public class BmsEnterpriseBasicInfo extends BaseInfoEntity {
|
|
|
|
|
/**
|
|
|
|
|
* 是否删除:0,未删除;1,已删除
|
|
|
|
|
*/
|
|
|
|
|
@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 +
|
|
|
|
|
'}';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|