| | |
| | | <select id="selectBaseUserInfoList" parameterType="com.ruoyi.system.domain.BaseUserInfo" |
| | | resultMap="BaseUserInfoResult"> |
| | | <include refid="selectBaseUserInfoVo"/> |
| | | <where> |
| | | where 1=1 |
| | | <if test="usercode != null and usercode != ''">and usercode = #{usercode}</if> |
| | | <if test="account != null and account != ''">and account = #{account}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="deptpermission != null and deptpermission != ''">and deptpermission = #{deptpermission}</if> |
| | | <if test="wardpermission != null and wardpermission != ''">and wardpermission = #{wardpermission}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectBaseUserInfoByUserid" parameterType="Long" resultMap="BaseUserInfoResult"> |