生成裁决书修改
This commit is contained in:
@@ -46,6 +46,14 @@
|
||||
<result property="properPreser" column="proper_preser" />
|
||||
<result property="adjudicaCounter" column="adjudica_counter" />
|
||||
<result property="lockStatus" column="lock_status" />
|
||||
<result property="interestRate" column="interest_rate" />
|
||||
<result property="outstandingMoney" column="outstanding_money" />
|
||||
<result property="facts" column="facts" />
|
||||
<result property="partyA" column="party_a" />
|
||||
<result property="disputes" column="disputes" />
|
||||
<result property="loanType" column="loan_type" />
|
||||
<result property="loanTerm" column="loan_term" />
|
||||
<result property="mediationAgreement" column="mediation_agreement" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
@@ -1374,6 +1382,14 @@
|
||||
<if test="createBy != null and createBy != ''">create_by,</if>
|
||||
<if test="importFlag != null ">import_flag,</if>
|
||||
<if test="version != null ">version,</if>
|
||||
interest_rate,
|
||||
outstanding_money,
|
||||
facts,
|
||||
party_a,
|
||||
disputes,
|
||||
loan_type,
|
||||
loan_term,
|
||||
mediation_agreement,
|
||||
create_time
|
||||
)values(
|
||||
<if test="caseName != null and caseName != ''">#{caseName},</if>
|
||||
@@ -1403,6 +1419,14 @@
|
||||
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
||||
<if test="importFlag != null ">#{importFlag},</if>
|
||||
<if test="version != null ">#{version},</if>
|
||||
#{interestRate},
|
||||
#{outstandingMoney},
|
||||
#{facts},
|
||||
#{partyA},
|
||||
#{disputes},
|
||||
#{loanType},
|
||||
#{loanTerm},
|
||||
#{mediationAgreement},
|
||||
sysdate()
|
||||
)
|
||||
</insert>
|
||||
@@ -1435,7 +1459,15 @@
|
||||
|
||||
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
||||
<if test="caseNum != null and caseNum != ''">case_num = #{caseNum},</if>
|
||||
<if test="version != null and version != ''">version = #{version},</if>
|
||||
<if test="version != null ">version = #{version},</if>
|
||||
<if test="interestRate != null and interestRate != ''">interest_rate = #{interestRate},</if>
|
||||
<if test="outstandingMoney != null and outstandingMoney != ''">outstanding_money = #{outstandingMoney},</if>
|
||||
<if test="facts != null and facts != ''">facts = #{facts},</if>
|
||||
<if test="partyA != null and partyA != ''">party_a = #{partyA},</if>
|
||||
<if test="disputes != null and disputes != ''">disputes = #{disputes},</if>
|
||||
<if test="loanType != null and loanType != ''">loan_type = #{loanType},</if>
|
||||
<if test="loanTerm != null and loanTerm != ''">loan_term = #{loanTerm},</if>
|
||||
<if test="mediationAgreement != null and mediationAgreement != ''">mediation_agreement = #{mediationAgreement},</if>
|
||||
update_time = sysdate()
|
||||
</set>
|
||||
where id = #{id}
|
||||
@@ -1517,7 +1549,15 @@
|
||||
c.loan_start_date ,c.loan_end_date ,c.claim_princi_owed ,c.claim_interest_owed ,c.claim_liquid_damag ,c.fee_payable ,
|
||||
c.begin_video_date ,c.online_video_person ,c.contract_number ,c.create_by ,c.create_time ,c.request_rule,c.adjudica_counter,c.proper_preser,
|
||||
c.is_absence ,c.respon_cross_opin ,c.applica_cross_opin ,c.respon_defen_opini ,
|
||||
c.update_by ,c.update_time,c.arbitrator_id,c.arbitrator_name,ca.application_organ_id applicationOrganId ,ca.application_organ_name as applicantName
|
||||
c.update_by ,c.update_time,c.arbitrator_id,c.arbitrator_name,ca.application_organ_id applicationOrganId ,ca.application_organ_name as applicantName,
|
||||
c.interest_rate,
|
||||
c.outstanding_money,
|
||||
c.facts,
|
||||
c.party_a,
|
||||
c.disputes,
|
||||
c.loan_type,
|
||||
c.loan_term,
|
||||
c.mediation_agreement
|
||||
from case_application c
|
||||
LEFT JOIN case_affiliate ca ON ca.case_appli_id = c.id and ca.identity_type=1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user