| | |
| | | <result column="hold" property="hold"/> |
| | | <result column="jurisdiction" property="jurisdiction"/> |
| | | <result column="securitynumber" property="securitynumber"/> |
| | | <result column="examinationType" property="examinationType"/> |
| | | <result column="examinationMx" property="examinationMx"/> |
| | | <result column="examination_type" property="examinationType"/> |
| | | <result column="examination_mx" property="examinationMx"/> |
| | | <result column="fingerprint" property="fingerprint"/> |
| | | <result column="photo" property="photo"/> |
| | | <result column="dispatch" property="dispatch"/> |
| | | <result column="my_picture" property="myPicture"/> |
| | | </resultMap> |
| | | |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="userResultMaps" type="org.springblade.modules.system.vo.UserVO"> |
| | | <result column="id" property="id"/> |
| | | <result column="tenant_id" property="tenantId"/> |
| | | <result column="create_user" property="createUser"/> |
| | | <result column="create_time" property="createTime"/> |
| | | <result column="update_user" property="updateUser"/> |
| | | <result column="update_time" property="updateTime"/> |
| | | <result column="status" property="status"/> |
| | | <result column="is_deleted" property="isDeleted"/> |
| | | <result column="code" property="code"/> |
| | | <result column="user_type" property="userType"/> |
| | | <result column="account" property="account"/> |
| | | <result column="password" property="password"/> |
| | | <result column="name" property="name"/> |
| | | <result column="real_name" property="realName"/> |
| | | <result column="email" property="email"/> |
| | | <result column="phone" property="phone"/> |
| | | <result column="birthday" property="birthday"/> |
| | | <result column="sex" property="sex"/> |
| | | <result column="role_id" property="roleId"/> |
| | | <result column="dept_id" property="deptId"/> |
| | | <result column="post_id" property="postId"/> |
| | | <result column="cardid" property="cardid"/> |
| | | <result column="nativeplace" property="nativeplace"/> |
| | | <result column="nation" property="nation"/> |
| | | <result column="education" property="education"/> |
| | | <result column="politicaloutlook" property="politicaloutlook"/> |
| | | <result column="height" property="height"/> |
| | | <result column="cell" property="cell"/> |
| | | <result column="emails" property="emails"/> |
| | | <result column="address" property="address"/> |
| | | <result column="registered" property="registered"/> |
| | | <result column="rtime" property="rtime"/> |
| | | <result column="hold" property="hold"/> |
| | | <result column="jurisdiction" property="jurisdiction"/> |
| | | <result column="securitynumber" property="securitynumber"/> |
| | | <result column="fingerprint" property="fingerprint"/> |
| | | <result column="photo" property="photo"/> |
| | | <result column="dispatch" property="dispatch"/> |
| | |
| | | |
| | | |
| | | <!--保安员列表--> |
| | | <select id="selectUserPageSecurity" resultMap="userResultMap"> |
| | | <select id="selectUserPageSecurity" resultMap="userResultMaps"> |
| | | select |
| | | bu.* |
| | | from |
| | |
| | | </foreach> |
| | | ) |
| | | </if> |
| | | ORDER BY bu.id |
| | | <if test="user.useName==null or user.useName==''"> |
| | | order by bu.id |
| | | </if> |
| | | <if test="user.useName!=null and user.useName!='' and user.useName=='examinationType'"> |
| | | order by bu.examination_type ${user.sort} |
| | | </if> |
| | | <if test="user.useName!=null and user.useName!='' and user.useName=='examinationMx'"> |
| | | order by bu.examination_mx ${user.sort} |
| | | </if> |
| | | </select> |
| | | |
| | | |