package com.shkpr.service.alambizplugin.dto; import com.global.base.tools.FastJsonUtil; import lombok.Getter; import lombok.Setter; @Getter @Setter public class UserInfoBean { private String userid = ""; private String roleid = ""; private String roleName = ""; private String account = ""; private String realName = ""; private String email = ""; private String address = ""; private String avatar = ""; private int sex = 0; private String phone = ""; //private String deptId = ""; //private String postId = ""; private String org = ""; private String orgName = ""; private String repairTeamId = ""; private String repairTeam = ""; private String repairTeamOrg = ""; private long createTime = 0L; public UserInfoBean() {} public String toJsonStr(){ return FastJsonUtil.toJSON(this); } }