添加默认设置

This commit is contained in:
huangdeliang
2020-10-08 10:51:59 +08:00
parent 92fc73e923
commit 8f656d7ee0
7 changed files with 1408 additions and 1336 deletions

View File

@ -18,6 +18,16 @@ public class CusUserPost implements Serializable {
private String postName;
private String remark;
public void setRemark(String remark) {
this.remark = remark;
}
public String getRemark() {
return remark;
}
public void setPostName(String postName) {
this.postName = postName;
}
@ -66,6 +76,7 @@ public class CusUserPost implements Serializable {
", postCode='" + postCode + '\'' +
", postid='" + postId + '\'' +
", postName='" + postName + '\'' +
", remark='" + remark + '\'' +
'}';
}
}