feat:身份账号

pg_adapter
wangxy 8 months ago
parent 57820549a9
commit d6c3f0d0c7

@ -42,6 +42,9 @@ public class SysUser extends BaseEntity
@Excel(name = "登录账号") @Excel(name = "登录账号")
private String loginName; private String loginName;
@Excel(name = "身份证号")
private String cerno;
/** 部门ID */ /** 部门ID */
@Excel(name = "部门编号", type = Type.IMPORT) @Excel(name = "部门编号", type = Type.IMPORT)
private Long deptId; private Long deptId;
@ -586,6 +589,14 @@ public class SysUser extends BaseEntity
this.posts = posts; this.posts = posts;
} }
public String getCerno() {
return cerno;
}
public void setCerno(String cerno) {
this.cerno = cerno;
}
@Override @Override
public String toString() { public String toString() {
return "SysUser{" + return "SysUser{" +
@ -593,6 +604,7 @@ public class SysUser extends BaseEntity
", deptId=" + deptId + ", deptId=" + deptId +
", parentId=" + parentId + ", parentId=" + parentId +
", roleId=" + roleId + ", roleId=" + roleId +
", cerno=" + cerno +
", loginName='" + loginName + '\'' + ", loginName='" + loginName + '\'' +
", userName='" + userName + '\'' + ", userName='" + userName + '\'' +
", userType='" + userType + '\'' + ", userType='" + userType + '\'' +

@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="loginName" column="login_name" /> <result property="loginName" column="login_name" />
<result property="userName" column="user_name" /> <result property="userName" column="user_name" />
<result property="userType" column="user_type" /> <result property="userType" column="user_type" />
<result property="cerno" column="cerno" />
<result property="email" column="email" /> <result property="email" column="email" />
<result property="phonenumber" column="phonenumber" /> <result property="phonenumber" column="phonenumber" />
<result property="sex" column="sex" /> <result property="sex" column="sex" />
@ -207,6 +208,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="deptId != null and deptId != 0">dept_id = #{deptId},</if> <if test="deptId != null and deptId != 0">dept_id = #{deptId},</if>
<if test="loginName != null and loginName != ''">login_name = #{loginName},</if> <if test="loginName != null and loginName != ''">login_name = #{loginName},</if>
<if test="userName != null and userName != ''">user_name = #{userName},</if> <if test="userName != null and userName != ''">user_name = #{userName},</if>
<if test="cerno != null and cerno != ''">cerno = #{cerno},</if>
<if test="userType != null and userType != ''">user_type = #{userType},</if> <if test="userType != null and userType != ''">user_type = #{userType},</if>
<if test="email != null and email != ''">email = #{email},</if> <if test="email != null and email != ''">email = #{email},</if>
<if test="phonenumber != null and phonenumber != ''">phonenumber = #{phonenumber},</if> <if test="phonenumber != null and phonenumber != ''">phonenumber = #{phonenumber},</if>
@ -244,6 +246,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="userId != null and userId != 0">user_id,</if> <if test="userId != null and userId != 0">user_id,</if>
<if test="deptId != null and deptId != 0">dept_id,</if> <if test="deptId != null and deptId != 0">dept_id,</if>
<if test="loginName != null and loginName != ''">login_name,</if> <if test="loginName != null and loginName != ''">login_name,</if>
<if test="cerno != null and cerno != ''">cerno,</if>
<if test="userName != null and userName != ''">user_name,</if> <if test="userName != null and userName != ''">user_name,</if>
<if test="userType != null and userType != ''">user_type,</if> <if test="userType != null and userType != ''">user_type,</if>
<if test="email != null and email != ''">email,</if> <if test="email != null and email != ''">email,</if>
@ -277,6 +280,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="userId != null and userId != ''">#{userId},</if> <if test="userId != null and userId != ''">#{userId},</if>
<if test="deptId != null and deptId != ''">#{deptId},</if> <if test="deptId != null and deptId != ''">#{deptId},</if>
<if test="loginName != null and loginName != ''">#{loginName},</if> <if test="loginName != null and loginName != ''">#{loginName},</if>
<if test="cerno != null and cerno != ''">#{cerno},</if>
<if test="userName != null and userName != ''">#{userName},</if> <if test="userName != null and userName != ''">#{userName},</if>
<if test="userType != null and userType != ''">#{userType},</if> <if test="userType != null and userType != ''">#{userType},</if>
<if test="email != null and email != ''">#{email},</if> <if test="email != null and email != ''">#{email},</if>

Loading…
Cancel
Save