|
@@ -20,7 +20,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectInvestigateUserVo">
|
|
<sql id="selectInvestigateUserVo">
|
|
- select id, investigate_id, user_name, phonenumber, id_card, duty, login_date, create_by, create_time, update_by, update_time, remark from investigate_user
|
|
|
|
|
|
+ select id, investigate_id, user_name, phonenumber, id_card, duty, create_by, create_time, update_by, update_time, remark from investigate_user
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<select id="selectInvestigateUserList" parameterType="InvestigateUser" resultMap="InvestigateUserResult">
|
|
<select id="selectInvestigateUserList" parameterType="InvestigateUser" resultMap="InvestigateUserResult">
|
|
@@ -31,7 +31,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="phonenumber != null and phonenumber != ''"> and phonenumber = #{phonenumber}</if>
|
|
<if test="phonenumber != null and phonenumber != ''"> and phonenumber = #{phonenumber}</if>
|
|
<if test="idCard != null and idCard != ''"> and id_card = #{idCard}</if>
|
|
<if test="idCard != null and idCard != ''"> and id_card = #{idCard}</if>
|
|
<if test="duty != null and duty != ''"> and duty = #{duty}</if>
|
|
<if test="duty != null and duty != ''"> and duty = #{duty}</if>
|
|
- <if test="loginDate != null "> and login_date = #{loginDate}</if>
|
|
|
|
</where>
|
|
</where>
|
|
</select>
|
|
</select>
|
|
|
|
|