|
@@ -21,6 +21,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="contentId" column="content_id" />
|
|
<result property="contentId" column="content_id" />
|
|
<result property="contentTitle" column="content_title"/>
|
|
<result property="contentTitle" column="content_title"/>
|
|
<result property="deptId" column="dept_id"/>
|
|
<result property="deptId" column="dept_id"/>
|
|
|
|
+ <result property="wayComing" column="way_coming" />
|
|
|
|
+ <result property="comInfo" column="com_info" />
|
|
|
|
+ <result property="wayBack" column="way_back" />
|
|
|
|
+ <result property="backInfo" column="back_info" />
|
|
|
|
+ <result property="remark" column="remark" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createBy" column="create_by" />
|
|
@@ -43,7 +48,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
usr_wechat_id,
|
|
usr_wechat_id,
|
|
content_id,
|
|
content_id,
|
|
content_title,
|
|
content_title,
|
|
- dept_id,
|
|
|
|
|
|
+ dept_id, way_coming, com_info, way_back, back_info, remark,
|
|
update_time,
|
|
update_time,
|
|
create_time,
|
|
create_time,
|
|
create_by,
|
|
create_by,
|
|
@@ -62,6 +67,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="conferenceFlag != null and conferenceFlag != ''"> and conference_flag = #{conferenceFlag}</if>
|
|
<if test="conferenceFlag != null and conferenceFlag != ''"> and conference_flag = #{conferenceFlag}</if>
|
|
<if test="applyType != null and applyType != ''"> and apply_type = #{applyType}</if>
|
|
<if test="applyType != null and applyType != ''"> and apply_type = #{applyType}</if>
|
|
<if test="reviewState != null and reviewState != ''"> and review_state = #{reviewState}</if>
|
|
<if test="reviewState != null and reviewState != ''"> and review_state = #{reviewState}</if>
|
|
|
|
+ <if test="wayComing != null and wayComing != ''"> and way_coming = #{wayComing}</if>
|
|
|
|
+ <if test="wayBack != null and wayBack != ''"> and way_back = #{wayBack}</if>
|
|
${params.dataScope}
|
|
${params.dataScope}
|
|
</where>
|
|
</where>
|
|
</select>
|
|
</select>
|
|
@@ -94,6 +101,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="contentId != null">content_id,</if>
|
|
<if test="contentId != null">content_id,</if>
|
|
<if test="contentTitle !=null">content_title,</if>
|
|
<if test="contentTitle !=null">content_title,</if>
|
|
<if test="deptId !=null">dept_id,</if>
|
|
<if test="deptId !=null">dept_id,</if>
|
|
|
|
+ <if test="wayComing != null">way_coming,</if>
|
|
|
|
+ <if test="comInfo != null">com_info,</if>
|
|
|
|
+ <if test="wayBack != null">way_back,</if>
|
|
|
|
+ <if test="backInfo != null">back_info,</if>
|
|
|
|
+ <if test="remark != null">remark,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -115,6 +127,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="contentId != null">#{contentId},</if>
|
|
<if test="contentId != null">#{contentId},</if>
|
|
<if test="contentTitle !=null">#{contentTitle},</if>
|
|
<if test="contentTitle !=null">#{contentTitle},</if>
|
|
<if test="deptId !=null">#{deptId},</if>
|
|
<if test="deptId !=null">#{deptId},</if>
|
|
|
|
+ <if test="wayComing != null">#{wayComing},</if>
|
|
|
|
+ <if test="comInfo != null">#{comInfo},</if>
|
|
|
|
+ <if test="wayBack != null">#{wayBack},</if>
|
|
|
|
+ <if test="backInfo != null">#{backInfo},</if>
|
|
|
|
+ <if test="remark != null">#{remark},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -140,6 +157,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="contentId != null">content_id,</if>
|
|
<if test="contentId != null">content_id,</if>
|
|
<if test="contentTitle !=null">content_title,</if>
|
|
<if test="contentTitle !=null">content_title,</if>
|
|
<if test="deptId !=null">dept_id,</if>
|
|
<if test="deptId !=null">dept_id,</if>
|
|
|
|
+ <if test="wayComing != null">way_coming,</if>
|
|
|
|
+ <if test="comInfo != null">com_info,</if>
|
|
|
|
+ <if test="wayBack != null">way_back,</if>
|
|
|
|
+ <if test="backInfo != null">back_info,</if>
|
|
|
|
+ <if test="remark != null">remark,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
update_time,
|
|
update_time,
|
|
@@ -161,6 +183,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="contentId != null">#{contentId},</if>
|
|
<if test="contentId != null">#{contentId},</if>
|
|
<if test="contentTitle !=null">#{contentTitle},</if>
|
|
<if test="contentTitle !=null">#{contentTitle},</if>
|
|
<if test="deptId !=null">#{deptId},</if>
|
|
<if test="deptId !=null">#{deptId},</if>
|
|
|
|
+ <if test="wayComing != null">#{wayComing},</if>
|
|
|
|
+ <if test="comInfo != null">#{comInfo},</if>
|
|
|
|
+ <if test="wayBack != null">#{wayBack},</if>
|
|
|
|
+ <if test="backInfo != null">#{backInfo},</if>
|
|
|
|
+ <if test="remark != null">#{remark},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
now(),
|
|
now(),
|
|
@@ -182,6 +209,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="contentId != null">content_id = VALUES(content_id),</if>
|
|
<if test="contentId != null">content_id = VALUES(content_id),</if>
|
|
<if test="contentTitle !=null">content_title = VALUES(content_title),</if>
|
|
<if test="contentTitle !=null">content_title = VALUES(content_title),</if>
|
|
<if test="deptId !=null">dept_id = VALUES(dept_id),</if>
|
|
<if test="deptId !=null">dept_id = VALUES(dept_id),</if>
|
|
|
|
+ <if test="wayComing != null">way_coming = VALUES(way_coming),</if>
|
|
|
|
+ <if test="comInfo != null">com_info = VALUES(com_info),</if>
|
|
|
|
+ <if test="wayBack != null">way_back = VALUES(way_back),</if>
|
|
|
|
+ <if test="backInfo != null">back_info = VALUES(back_info),</if>
|
|
|
|
+ <if test="remark != null">remark = VALUES(remark),</if>
|
|
<if test="updateBy != null">update_by = VALUES(update_by),</if>
|
|
<if test="updateBy != null">update_by = VALUES(update_by),</if>
|
|
conference_rel = VALUES(conference_rel),
|
|
conference_rel = VALUES(conference_rel),
|
|
update_time = now()
|
|
update_time = now()
|
|
@@ -206,6 +238,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="contentId != null">content_id = #{contentId},</if>
|
|
<if test="contentId != null">content_id = #{contentId},</if>
|
|
<if test="contentTitle !=null">content_title = #{contentTitle},</if>
|
|
<if test="contentTitle !=null">content_title = #{contentTitle},</if>
|
|
<if test="deptId !=null">dept_id = #{deptId},</if>
|
|
<if test="deptId !=null">dept_id = #{deptId},</if>
|
|
|
|
+ <if test="wayComing != null">way_coming = #{wayComing},</if>
|
|
|
|
+ <if test="comInfo != null">com_info = #{comInfo},</if>
|
|
|
|
+ <if test="wayBack != null">way_back = #{wayBack},</if>
|
|
|
|
+ <if test="backInfo != null">back_info = #{backInfo},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|