|
@@ -13,6 +13,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="loanApplicationNumber" column="loan_application_number" />
|
|
|
<result property="isConference" column="is_conference" />
|
|
|
<result property="reason" column="reason" />
|
|
|
+ <result property="conferenceTime" column="conference_time" />
|
|
|
+ <result property="votingResult" column="voting_result" />
|
|
|
+ <result property="lineGuarantee" column="line_guarantee" />
|
|
|
+ <result property="guaranteePeriod" column="guarantee_period" />
|
|
|
+ <result property="argument" column="argument" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -21,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectSysUserConferenceVo">
|
|
|
- select conference_id, user_id, id_card, real_name, loan_application_id, loan_application_number, is_conference, reason, create_by, create_time, update_by, update_time, remark from sys_user_conference
|
|
|
+ select conference_id, user_id, id_card, real_name, loan_application_id, loan_application_number, is_conference, reason,conference_time,voting_result,line_guarantee,guarantee_period,argument, create_by, create_time, update_by, update_time, remark from sys_user_conference
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectSysUserConferenceList" parameterType="SysUserConference" resultMap="SysUserConferenceResult">
|
|
@@ -34,6 +39,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="loanApplicationNumber != null and loanApplicationNumber != ''"> and loan_application_number = #{loanApplicationNumber}</if>
|
|
|
<if test="isConference != null and isConference != ''"> and is_conference = #{isConference}</if>
|
|
|
<if test="reason != null and reason != ''"> and reason = #{reason}</if>
|
|
|
+
|
|
|
+ <if test="conferenceTime != null and conferenceTime != ''"> and conference_time = #{conferenceTime}</if>
|
|
|
+ <if test="votingResult != null and votingResult != ''"> and voting_result = #{votingResult}</if>
|
|
|
+ <if test="lineGuarantee != null and lineGuarantee != ''"> and line_guarantee = #{lineGuarantee}</if>
|
|
|
+ <if test="guaranteePeriod != null and guaranteePeriod != ''"> and guarantee_period = #{guaranteePeriod}</if>
|
|
|
+ <if test="argument != null and argument != ''"> and argument = #{argument}</if>
|
|
|
</where>
|
|
|
order by create_time
|
|
|
</select>
|
|
@@ -53,6 +64,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="loanApplicationNumber != null">loan_application_number,</if>
|
|
|
<if test="isConference != null">is_conference,</if>
|
|
|
<if test="reason != null">reason,</if>
|
|
|
+ <if test="conferenceTime != null ">conference_time ,</if>
|
|
|
+ <if test="votingResult != null ">voting_result,</if>
|
|
|
+ <if test="lineGuarantee != null ">line_guarantee ,</if>
|
|
|
+ <if test="guaranteePeriod != null ">guarantee_period ,</if>
|
|
|
+ <if test="argument != null ">argument,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -67,6 +83,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="loanApplicationNumber != null">#{loanApplicationNumber},</if>
|
|
|
<if test="isConference != null">#{isConference},</if>
|
|
|
<if test="reason != null">#{reason},</if>
|
|
|
+ <if test="conferenceTime != null ">#{conferenceTime},</if>
|
|
|
+ <if test="votingResult != null ">#{votingResult},</if>
|
|
|
+ <if test="lineGuarantee != null ">#{lineGuarantee},</if>
|
|
|
+ <if test="guaranteePeriod != null ">#{guaranteePeriod},</if>
|
|
|
+ <if test="argument != null ">#{argument},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -91,6 +112,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="loanApplicationNumber != null">loan_application_number = #{loanApplicationNumber},</if>
|
|
|
<if test="isConference != null">is_conference = #{isConference},</if>
|
|
|
<if test="reason != null">reason = #{reason},</if>
|
|
|
+ <if test="conferenceTime != null ">conference_time = #{conferenceTime},</if>
|
|
|
+ <if test="votingResult != null ">voting_result = #{votingResult},</if>
|
|
|
+ <if test="lineGuarantee != null ">line_guarantee = #{lineGuarantee},</if>
|
|
|
+ <if test="guaranteePeriod != null ">guarantee_period = #{guaranteePeriod},</if>
|
|
|
+ <if test="argument != null ">argument = #{argument},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|