|
@@ -52,6 +52,7 @@
|
|
|
<result property="cjdName" column="cjd_name"/>
|
|
|
<result property="isMeet" column="is_meet"/>
|
|
|
<result property="meetRemark" column="meet_remark"/>
|
|
|
+ <result property="shjg" column="shjg"/>
|
|
|
|
|
|
|
|
|
<association property="zsyzQyxx" javaType="ZsyzQyxx" resultMap="ZsyzQyxxResult"/>
|
|
@@ -223,7 +224,8 @@
|
|
|
cjd_id,
|
|
|
cjd_name,
|
|
|
is_meet,
|
|
|
- meet_remark
|
|
|
+ meet_remark,
|
|
|
+ shjg
|
|
|
from zsyz_sbbzb
|
|
|
</sql>
|
|
|
|
|
@@ -234,10 +236,8 @@
|
|
|
s.tzrxm, s.tzrzw, s.tzrdh, s.xmjj, s.name,
|
|
|
s.strq, s.phone, s.zw, s.user_id, s.create_by, s.type, s.progress, s.dept_id, s.create_time, s.update_by,
|
|
|
s.is_del, s.update_time, s.remark, s.cjd_id,
|
|
|
- s.cjd_name, s.is_meet, s.meet_remark,
|
|
|
- j.id,j.xm_id,j.xmbh,j.xmmc,j.dept_id,j.shrxm,j.xmjd,j.shjg,j.shyj,j.shsj
|
|
|
+ s.cjd_name, s.is_meet, s.meet_remark,s.shjg
|
|
|
from zsyz_sbbzb s
|
|
|
- left join zsyz_shyj j on s.id = j.xm_id
|
|
|
<where>
|
|
|
s.is_del = 'N'
|
|
|
<if test="sbdw != null and sbdw != ''">and s.sbdw = #{sbdw}</if>
|
|
@@ -280,6 +280,7 @@
|
|
|
<if test="cjdName != null and cjdName != ''">and s.cjd_name like concat('%', #{cjdName}, '%')</if>
|
|
|
<if test="isMeet != null and isMeet != ''">and s.is_meet = #{isMeet}</if>
|
|
|
<if test="meetRemark != null and meetRemark != ''">and s.meet_remark = #{meetRemark}</if>
|
|
|
+ <if test="shjg != null and shjg != ''">and s.shjg = #{shjg}</if>
|
|
|
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
|
|
|
AND date_format(s.create_time,'%Y%m%d') >= date_format(#{params.beginTime},'%Y%m%d')
|
|
|
</if>
|
|
@@ -298,10 +299,8 @@
|
|
|
s.tzrxm, s.tzrzw, s.tzrdh, s.xmjj, s.name,
|
|
|
s.strq, s.phone, s.zw, s.user_id, s.create_by, s.type, s.progress, s.dept_id, s.create_time, s.update_by,
|
|
|
s.is_del, s.update_time, s.remark, s.cjd_id,
|
|
|
- s.cjd_name, s.is_meet, s.meet_remark,
|
|
|
- j.id,j.xm_id,j.xmbh,j.xmmc,j.dept_id,j.shrxm,j.xmjd,j.shjg,j.shyj,j.shsj
|
|
|
+ s.cjd_name, s.is_meet, s.meet_remark,s.shjg
|
|
|
from zsyz_sbbzb s
|
|
|
- left join zsyz_shyj j on s.id = j.xm_id
|
|
|
where s.id = #{id} and s.is_del = 'N'
|
|
|
</select>
|
|
|
|
|
@@ -657,6 +656,7 @@
|
|
|
<if test="cjdName != null">cjd_name,</if>
|
|
|
<if test="isMeet != null">is_meet,</if>
|
|
|
<if test="meetRemark != null">meet_remark,</if>
|
|
|
+ <if test="shjg != null">shjg,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="sbdw != null and sbdw != ''">#{sbdw},</if>
|
|
@@ -705,6 +705,7 @@
|
|
|
<if test="cjdName != null">#{cjdName},</if>
|
|
|
<if test="isMeet != null">#{isMeet},</if>
|
|
|
<if test="meetRemark != null">#{meetRemark},</if>
|
|
|
+ <if test="shjg != null">#{shjg},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|
|
@@ -757,6 +758,7 @@
|
|
|
<if test="cjdName != null">cjd_name = #{cjdName},</if>
|
|
|
<if test="isMeet != null">is_meet = #{isMeet},</if>
|
|
|
<if test="meetRemark != null">meet_remark = #{meetRemark},</if>
|
|
|
+ <if test="shjg != null">shjg = #{shjg},</if>
|
|
|
</trim>
|
|
|
where id = #{id}
|
|
|
</update>
|