| | |
| | | <result column="examinationMx" property="examinationMx"/> |
| | | <result column="fingerprint" property="fingerprint"/> |
| | | <result column="photo" property="photo"/> |
| | | <result column="dispatch" property="dispatch"/> |
| | | <result column="my_picture" property="myPicture"/> |
| | | </resultMap> |
| | | |
| | | <select id="selectUserPage" resultMap="userResultMap"> |
| | |
| | | <if test="user.account!=null and user.account != ''"> |
| | | and bu.account != #{user.account} |
| | | </if> |
| | | <if test="user.cardid!=null and user.cardid != ''"> |
| | | and bu.cardid like concat(concat('%', #{user.cardid}),'%') |
| | | </if> |
| | | <if test="user.realName!=null and user.realName != ''"> |
| | | and bu.real_name like concat(concat('%', #{user.realName}),'%') |
| | | </if> |
| | |
| | | update blade_user set hold=#{hold} where cardid=#{cardid} |
| | | </update> |
| | | |
| | | <!--查询所有未注销用户--> |
| | | <select id="getAllUserList" resultType="org.springblade.modules.system.entity.User"> |
| | | select id,cardid from blade_user where is_deleted = 0 |
| | | </select> |
| | | |
| | | </mapper> |