| | |
| | | <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"> |
| | |
| | | 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> |