| | |
| | | <result property="processName" column="process_name"/> |
| | | <result property="infoProcess" column="info_process"/> |
| | | <result property="infoProcessName" column="info_process_name"/> |
| | | <result property="partyShow" column="party_show"/> |
| | | <result property="wantUnitId" column="want_unit_id"/> |
| | | <result property="wantUnitName" column="want_unit_name"/> |
| | | <result property="wantUserId" column="want_user_id"/> |
| | |
| | | want_unit_name, |
| | | want_user_id, |
| | | want_user_name, |
| | | party_show, |
| | | delete_status, |
| | | cust_id, |
| | | create_time, |
| | |
| | | <if test="entity.processName != null">process_name = #{entity.processName},</if> |
| | | <if test="entity.infoProcess != null">info_process = #{entity.infoProcess},</if> |
| | | <if test="entity.infoProcessName != null">info_process_name = #{entity.infoProcessName},</if> |
| | | <if test="entity.partyShow != null">party_show = #{entity.partyShow},</if> |
| | | <if test="entity.wantUnitId != null">want_unit_id = #{entity.wantUnitId},</if> |
| | | <if test="entity.wantUnitName != null">want_unit_name = #{entity.wantUnitName},</if> |
| | | <if test="entity.wantUserId != null">want_user_id = #{entity.wantUserId},</if> |
| | |
| | | <if test="terms != null"> |
| | | <where> |
| | | and delete_status = 0 |
| | | <if test="terms.ids != null and terms.ids.size > 0"> |
| | | and a.id in |
| | | <foreach collection="terms.ids" item="id" index="index" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </if> |
| | | <if test="terms.status != null and terms.status !=''"> |
| | | and a.status = #{terms.status} |
| | | </if> |