|
@@ -36,6 +36,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="membersOpinion" column="members_opinion" />
|
|
<result property="membersOpinion" column="members_opinion" />
|
|
<result property="zxSatisfaction" column="zx_satisfaction" />
|
|
<result property="zxSatisfaction" column="zx_satisfaction" />
|
|
<result property="zxOpinion" column="zx_opinion" />
|
|
<result property="zxOpinion" column="zx_opinion" />
|
|
|
|
+
|
|
|
|
+ <result property="isKeyPoint" column="is_key_point" />
|
|
|
|
+ <result property="keyPointArgument" column="key_point_argument" />
|
|
|
|
+ <result property="isOutstanding" column="is_outstanding" />
|
|
|
|
+ <result property="outstandingArgument" column="outstanding_argument" />
|
|
|
|
+
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -44,7 +50,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectProposalInfoVo">
|
|
<sql id="selectProposalInfoVo">
|
|
- select proposal_id, proposal_user_id, proposal_number, title, proposal_name, proposal_phone, boundary, party_affiliation, contact_address, category_id, category_name, proposal_type, proposal_content, is_jointly, is_publicity, content_publicity, is_survey, is_first, is_person, is_record, negotiate_type, proposed_contractor, proposal_progress, rolling_process, complex_type, is_cases_together, unite_proposal_id, satisfaction, members_opinion, create_by, create_time, update_by, update_time, remark from proposal_info
|
|
|
|
|
|
+ select proposal_id, proposal_user_id, proposal_number, title, proposal_name, proposal_phone, boundary, party_affiliation, contact_address, category_id, category_name, proposal_type, proposal_content, is_jointly, is_publicity, content_publicity, is_survey, is_first, is_person, is_record, negotiate_type, proposed_contractor, proposal_progress, rolling_process, complex_type, is_cases_together, unite_proposal_id, satisfaction, members_opinion,
|
|
|
|
+ zx_satisfaction,zx_opinion,is_key_point,key_point_argument,is_outstanding,outstanding_argument,create_by, create_time, update_by, update_time, remark from proposal_info
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<select id="selectProposalInfoList" parameterType="ProposalInfo" resultMap="ProposalInfoResult">
|
|
<select id="selectProposalInfoList" parameterType="ProposalInfo" resultMap="ProposalInfoResult">
|
|
@@ -80,6 +87,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="membersOpinion != null and membersOpinion != ''"> and members_opinion = #{membersOpinion}</if>
|
|
<if test="membersOpinion != null and membersOpinion != ''"> and members_opinion = #{membersOpinion}</if>
|
|
<if test="zxSatisfaction != null and zxSatisfaction != ''"> and zx_satisfaction = #{zxSatisfaction}</if>
|
|
<if test="zxSatisfaction != null and zxSatisfaction != ''"> and zx_satisfaction = #{zxSatisfaction}</if>
|
|
<if test="zxOpinion != null and zxOpinion != ''"> and zx_opinion = #{zxOpinion}</if>
|
|
<if test="zxOpinion != null and zxOpinion != ''"> and zx_opinion = #{zxOpinion}</if>
|
|
|
|
+
|
|
|
|
+ <if test="isKeyPoint != null and isKeyPoint != ''"> and is_key_point = #{isKeyPoint}</if>
|
|
|
|
+ <if test="keyPointArgument != null and keyPointArgument != ''"> and key_point_argument = #{keyPointArgument}</if>
|
|
|
|
+ <if test="isOutstanding != null and isOutstanding != ''"> and is_outstanding = #{isOutstanding}</if>
|
|
|
|
+ <if test="outstandingArgument != null and outstandingArgument != ''"> and outstanding_argument = #{outstandingArgument}</if>
|
|
</where>
|
|
</where>
|
|
</select>
|
|
</select>
|
|
|
|
|
|
@@ -119,8 +131,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="uniteProposalId != null">unite_proposal_id,</if>
|
|
<if test="uniteProposalId != null">unite_proposal_id,</if>
|
|
<if test="satisfaction != null">satisfaction,</if>
|
|
<if test="satisfaction != null">satisfaction,</if>
|
|
<if test="membersOpinion != null">members_opinion,</if>
|
|
<if test="membersOpinion != null">members_opinion,</if>
|
|
- <if test="zxSatisfaction != null "> zx_satisfaction</if>
|
|
|
|
- <if test="zxOpinion != null "> zx_opinion</if>
|
|
|
|
|
|
+ <if test="zxSatisfaction != null "> zx_satisfaction,</if>
|
|
|
|
+ <if test="zxOpinion != null "> zx_opinion,</if>
|
|
|
|
+ <if test="isKeyPoint != null "> is_key_point,</if>
|
|
|
|
+ <if test="keyPointArgument != null "> key_point_argument, </if>
|
|
|
|
+ <if test="isOutstanding != null "> is_outstanding ,</if>
|
|
|
|
+ <if test="outstandingArgument != null "> outstanding_argument, </if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -156,8 +172,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="uniteProposalId != null">#{uniteProposalId},</if>
|
|
<if test="uniteProposalId != null">#{uniteProposalId},</if>
|
|
<if test="satisfaction != null">#{satisfaction},</if>
|
|
<if test="satisfaction != null">#{satisfaction},</if>
|
|
<if test="membersOpinion != null">#{membersOpinion},</if>
|
|
<if test="membersOpinion != null">#{membersOpinion},</if>
|
|
- <if test="zxSatisfaction != null "> #{zxSatisfaction}</if>
|
|
|
|
- <if test="zxOpinion != null ">#{zxOpinion}</if>
|
|
|
|
|
|
+ <if test="zxSatisfaction != null "> #{zxSatisfaction},</if>
|
|
|
|
+ <if test="zxOpinion != null ">#{zxOpinion},</if>
|
|
|
|
+ <if test="isKeyPoint != null "> #{isKeyPoint},</if>
|
|
|
|
+ <if test="keyPointArgument != null "> #{keyPointArgument},</if>
|
|
|
|
+ <if test="isOutstanding != null "> #{isOutstanding},</if>
|
|
|
|
+ <if test="outstandingArgument != null "> #{outstandingArgument},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -197,8 +217,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="uniteProposalId != null">unite_proposal_id = #{uniteProposalId},</if>
|
|
<if test="uniteProposalId != null">unite_proposal_id = #{uniteProposalId},</if>
|
|
<if test="satisfaction != null">satisfaction = #{satisfaction},</if>
|
|
<if test="satisfaction != null">satisfaction = #{satisfaction},</if>
|
|
<if test="membersOpinion != null">members_opinion = #{membersOpinion},</if>
|
|
<if test="membersOpinion != null">members_opinion = #{membersOpinion},</if>
|
|
- <if test="zxSatisfaction != null "> zx_satisfaction = #{zxSatisfaction}</if>
|
|
|
|
- <if test="zxOpinion != null "> zx_opinion = #{zxOpinion}</if>
|
|
|
|
|
|
+ <if test="zxSatisfaction != null "> zx_satisfaction = #{zxSatisfaction},</if>
|
|
|
|
+ <if test="zxOpinion != null "> zx_opinion = #{zxOpinion},</if>
|
|
|
|
+ <if test="isKeyPoint != null "> is_key_point = #{isKeyPoint},</if>
|
|
|
|
+ <if test="keyPointArgument != null "> key_point_argument = #{keyPointArgument},</if>
|
|
|
|
+ <if test="isOutstanding != null "> is_outstanding = #{isOutstanding},</if>
|
|
|
|
+ <if test="outstandingArgument != null "> outstanding_argument = #{outstandingArgument},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|