|
|
@@ -15,6 +15,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="email" column="email" />
|
|
|
<result property="manager" column="manager" />
|
|
|
<result property="address" column="address" />
|
|
|
+ <result property="process" column="process" />
|
|
|
+ <result property="safety" column="safety" />
|
|
|
+ <result property="cancel" column="cancel" />
|
|
|
+ <result property="about" column="about" />
|
|
|
+ <result property="mark" column="mark" />
|
|
|
+ <result property="privacy" column="privacy" />
|
|
|
+ <result property="agreement" column="agreement" />
|
|
|
<result property="status" column="status" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
@@ -36,6 +43,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
a.email,
|
|
|
a.manager,
|
|
|
a.address,
|
|
|
+ process,
|
|
|
+ a.safety,
|
|
|
+ a.cancel,
|
|
|
+ a.about,
|
|
|
+ a.mark,
|
|
|
+ a.privacy,
|
|
|
+ a.agreement,
|
|
|
a.STATUS,
|
|
|
a.del_flag,
|
|
|
a.create_by,
|
|
|
@@ -60,6 +74,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="email != null and email != ''"> and email = #{email}</if>
|
|
|
<if test="manager != null "> and manager = #{manager}</if>
|
|
|
<if test="address != null and address != ''"> and address = #{address}</if>
|
|
|
+ <if test="process != null and process != ''"> and process = #{process}</if>
|
|
|
+ <if test="safety != null and safety != ''"> and safety = #{safety}</if>
|
|
|
+ <if test="cancel != null and cancel != ''"> and cancel = #{cancel}</if>
|
|
|
+ <if test="about != null and about != ''"> and about = #{about}</if>
|
|
|
+ <if test="mark != null and mark != ''"> and mark = #{mark}</if>
|
|
|
+ <if test="privacy != null and privacy != ''"> and privacy = #{privacy}</if>
|
|
|
+ <if test="agreement != null and agreement != ''"> and agreement = #{agreement}</if>
|
|
|
<if test="status != null and status != ''"> and status = #{status}</if>
|
|
|
<if test="params.beginDate != null and params.beginDate != ''"><!-- 开始时间检索 -->
|
|
|
and date_format(a.create_time,'%y%m%d') >= date_format(#{params.beginDate},'%y%m%d')
|
|
|
@@ -87,6 +108,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="email != null">email,</if>
|
|
|
<if test="manager != null">manager,</if>
|
|
|
<if test="address != null">address,</if>
|
|
|
+ <if test="process != null">process,</if>
|
|
|
+ <if test="safety != null">safety,</if>
|
|
|
+ <if test="cancel != null">cancel,</if>
|
|
|
+ <if test="about != null">about,</if>
|
|
|
+ <if test="mark != null">mark,</if>
|
|
|
+ <if test="privacy != null">privacy,</if>
|
|
|
+ <if test="agreement != null">agreement,</if>
|
|
|
<if test="status != null">status,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
@@ -104,6 +132,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="email != null">#{email},</if>
|
|
|
<if test="manager != null">#{manager},</if>
|
|
|
<if test="address != null">#{address},</if>
|
|
|
+ <if test="process != null">#{process},</if>
|
|
|
+ <if test="safety != null">#{safety},</if>
|
|
|
+ <if test="cancel != null">#{cancel},</if>
|
|
|
+ <if test="about != null">#{about},</if>
|
|
|
+ <if test="mark != null">#{mark},</if>
|
|
|
+ <if test="privacy != null">#{privacy},</if>
|
|
|
+ <if test="agreement != null">#{agreement},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
@@ -125,6 +160,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="email != null">email = #{email},</if>
|
|
|
<if test="manager != null">manager = #{manager},</if>
|
|
|
<if test="address != null">address = #{address},</if>
|
|
|
+ <if test="process != null">process = #{process},</if>
|
|
|
+ <if test="safety != null">safety = #{safety},</if>
|
|
|
+ <if test="cancel != null">cancel = #{cancel},</if>
|
|
|
+ <if test="about != null">about = #{about},</if>
|
|
|
+ <if test="mark != null">mark = #{mark},</if>
|
|
|
+ <if test="privacy != null">privacy = #{privacy},</if>
|
|
|
+ <if test="agreement != null">agreement = #{agreement},</if>
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|