| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspAllRlationPersZj
- *
- * @author lhc
- * @date 2020-7-20
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspAllRlationPersZj extends BaseBean implements Serializable {
- // 用户名称
- @ApiModelProperty(value="用户名称",name="userCode")
- private String userCode;
- // 用户名称
- @ApiModelProperty(value="用户名称",name="userName")
- private String userName;
- // 真实姓名
- @ApiModelProperty(value="真实姓名",name="trueName")
- private String trueName;
- // 手机号码
- @ApiModelProperty(value="手机号码",name="mobile")
- private String mobile;
- // 电子邮箱
- @ApiModelProperty(value="电子邮箱",name="mail")
- private String mail;
- // 是否为管理员
- @ApiModelProperty(value="是否为管理员",name="isAdmin")
- private String isAdmin;
- // 行政区划码
- @ApiModelProperty(value="行政区划码",name="adcd")
- private String adcd;
- // 行政区划名称
- @ApiModelProperty(value="行政区划名称",name="adName")
- private String adName;
- // 用户头像URL
- @ApiModelProperty(value="用户头像URL",name="avatar")
- private String avatar;
- // 修改时间
- @ApiModelProperty(value="修改时间",name="modifyTime")
- private Date modifyTime;
- public BisInspAllRlationPersZj() {
- }
- public String getUserCode() {
- return userCode;
- }
- public void setUserCode(String userCode) {
- this.userCode = userCode;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getTrueName() {
- return trueName;
- }
- public void setTrueName(String trueName) {
- this.trueName = trueName;
- }
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- public String getMail() {
- return mail;
- }
- public void setMail(String mail) {
- this.mail = mail;
- }
- public String getIsAdmin() {
- return isAdmin;
- }
- public void setIsAdmin(String isAdmin) {
- this.isAdmin = isAdmin;
- }
- public String getAdcd() {
- return adcd;
- }
- public void setAdcd(String adcd) {
- this.adcd = adcd;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getAvatar() {
- return avatar;
- }
- public void setAvatar(String avatar) {
- this.avatar = avatar;
- }
- public Date getModifyTime() {
- return modifyTime;
- }
- public void setModifyTime(Date modifyTime) {
- this.modifyTime = modifyTime;
- }
- @Override
- public String toString() {
- return "BisInspAllRlationPersZj [" + "userCode=" + userCode + ", userName=" + userName + ", trueName=" + trueName + ", mobile=" + mobile + ", mail=" + mail + ", isAdmin=" + isAdmin + ", adcd=" + adcd + ", adName=" + adName + ", avatar=" + avatar + ", modifyTime=" + modifyTime + "]";
- }
- }
|