| | |
| | | <result column="creditCode" property="creditcode"/> |
| | | <result column="rtime" property="rtime"/> |
| | | <result column="dept_id" property="deptId"/> |
| | | <result column="education" property="education"/> |
| | | <result column="paper" property="paper"/> |
| | | </resultMap> |
| | | |
| | | |
| | |
| | | <if test="member.deptId!=null and member.deptId!=''" > |
| | | and dept_id=#{member.deptId} |
| | | </if> |
| | | <if test="member.education!=null" > |
| | | and education=#{member.education} |
| | | </if> |
| | | <if test="member.name!=null and member.name!=''" > |
| | | and name like concat ('%',#{member.name},'%') |
| | | </if> |