|
|
|
@ -2,8 +2,73 @@ |
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
|
|
|
<mapper namespace="com.huoran.judgment_point.mapper.BankCompanyLoansMapper"> |
|
|
|
|
|
|
|
|
|
<!-- <select id="companyLoanList"--> |
|
|
|
|
<!-- resultType="com.huoran.judgment_point.entity.vo.CompanyLoanListVO">--> |
|
|
|
|
<!-- SELECT--> |
|
|
|
|
<!-- cl.company_loan_id,--> |
|
|
|
|
<!-- cl.application_number,--> |
|
|
|
|
<!-- cl.create_time,--> |
|
|
|
|
<!-- cl.loan_status,--> |
|
|
|
|
<!-- cl.extension_period,--> |
|
|
|
|
<!-- cl.loan_date,--> |
|
|
|
|
<!-- cl.update_time,--> |
|
|
|
|
<!-- cl.non_performing_loan,--> |
|
|
|
|
<!-- cl.bad_debt_recognition,--> |
|
|
|
|
<!-- cl.built_in,--> |
|
|
|
|
<!-- cl.processing_results,--> |
|
|
|
|
<!-- cl.submit,--> |
|
|
|
|
<!-- CASE--> |
|
|
|
|
<!-- WHEN cl.submit = 0 THEN--> |
|
|
|
|
<!-- '进行中'--> |
|
|
|
|
<!-- WHEN cl.submit = 1 THEN--> |
|
|
|
|
<!-- '已通过'--> |
|
|
|
|
<!-- END AS processing_status,--> |
|
|
|
|
<!-- ca.customer_name,--> |
|
|
|
|
<!-- ca.loan_type,--> |
|
|
|
|
<!-- ca.loan_application_amount,--> |
|
|
|
|
<!-- ca.total_interest_amount,--> |
|
|
|
|
<!-- ca.loan_amount,--> |
|
|
|
|
<!-- ca.loan_application_date,--> |
|
|
|
|
<!-- pi.business_status,--> |
|
|
|
|
<!-- pi.debt_paying_ability,--> |
|
|
|
|
<!-- pi.credit_status,--> |
|
|
|
|
<!-- pi.adverse_changes,--> |
|
|
|
|
<!-- pi.five_level_classification,--> |
|
|
|
|
<!-- IFNULL( (--> |
|
|
|
|
<!-- SELECT--> |
|
|
|
|
<!-- sum( amount_due )--> |
|
|
|
|
<!-- FROM--> |
|
|
|
|
<!-- bank_company_repayment_plan p--> |
|
|
|
|
<!-- WHERE--> |
|
|
|
|
<!-- p.company_loan_id = cl.company_loan_id--> |
|
|
|
|
<!-- AND p.STATUS = '已还款'--> |
|
|
|
|
<!-- ),0) AS totalRepaymentAmount--> |
|
|
|
|
<!-- FROM--> |
|
|
|
|
<!-- bank_company_loans cl--> |
|
|
|
|
<!-- LEFT JOIN bank_credit_evaluation ce ON cl.company_loan_id = ce.company_loan_id--> |
|
|
|
|
<!-- LEFT JOIN bank_loan_application ca ON cl.company_loan_id = ca.company_loan_id--> |
|
|
|
|
<!-- LEFT JOIN bank_post_loan_investigation pi ON cl.company_loan_id = pi.company_loan_id--> |
|
|
|
|
<!-- where cl.account_id = #{req.accountId}--> |
|
|
|
|
<!-- and cl.project_id = #{req.projectId}--> |
|
|
|
|
<!-- and cl.school_id = #{req.schoolId}--> |
|
|
|
|
<!-- and cl.built_in = 0--> |
|
|
|
|
<!-- <if test='req.searchContent !=null and req.searchContent !=""'>--> |
|
|
|
|
<!-- AND ce.customer_name LIKE CONCAT('%',#{req.searchContent},'%')--> |
|
|
|
|
<!-- </if>--> |
|
|
|
|
<!-- <if test='req.typeId !=null and req.typeId > 2'>--> |
|
|
|
|
<!-- AND cl.loan_date IS NOT NULL--> |
|
|
|
|
<!-- </if>--> |
|
|
|
|
<!-- <if test='req.typeId !=null and req.typeId = 2'>--> |
|
|
|
|
<!-- AND cl.submit = 1--> |
|
|
|
|
<!-- </if>--> |
|
|
|
|
<!-- GROUP BY cl.company_loan_id--> |
|
|
|
|
<!-- ORDER BY cl.create_time DESC--> |
|
|
|
|
<!-- </select>--> |
|
|
|
|
|
|
|
|
|
<select id="companyLoanList" |
|
|
|
|
resultType="com.huoran.judgment_point.entity.vo.CompanyLoanListVO"> |
|
|
|
|
SELECT * |
|
|
|
|
FROM ( |
|
|
|
|
SELECT |
|
|
|
|
cl.company_loan_id, |
|
|
|
|
cl.application_number, |
|
|
|
@ -18,10 +83,8 @@ |
|
|
|
|
cl.processing_results, |
|
|
|
|
cl.submit, |
|
|
|
|
CASE |
|
|
|
|
WHEN cl.submit = 0 THEN |
|
|
|
|
'进行中' |
|
|
|
|
WHEN cl.submit = 1 THEN |
|
|
|
|
'已通过' |
|
|
|
|
WHEN cl.submit = 0 THEN '进行中' |
|
|
|
|
WHEN cl.submit = 1 THEN '已通过' |
|
|
|
|
END AS processing_status, |
|
|
|
|
ce.customer_name, |
|
|
|
|
ca.loan_type, |
|
|
|
@ -34,35 +97,86 @@ |
|
|
|
|
pi.credit_status, |
|
|
|
|
pi.adverse_changes, |
|
|
|
|
pi.five_level_classification, |
|
|
|
|
IFNULL( ( |
|
|
|
|
SELECT |
|
|
|
|
sum( amount_due ) |
|
|
|
|
IFNULL(( |
|
|
|
|
SELECT SUM(amount_due) |
|
|
|
|
FROM bank_company_repayment_plan p |
|
|
|
|
WHERE p.company_loan_id = cl.company_loan_id |
|
|
|
|
AND p.status = '已还款' |
|
|
|
|
), 0) AS totalRepaymentAmount |
|
|
|
|
FROM |
|
|
|
|
bank_company_repayment_plan p |
|
|
|
|
bank_company_loans cl |
|
|
|
|
LEFT JOIN bank_credit_evaluation ce ON cl.company_loan_id = ce.company_loan_id |
|
|
|
|
LEFT JOIN bank_loan_application ca ON cl.company_loan_id = ca.company_loan_id |
|
|
|
|
LEFT JOIN bank_post_loan_investigation pi ON cl.company_loan_id = pi.company_loan_id |
|
|
|
|
WHERE |
|
|
|
|
p.company_loan_id = cl.company_loan_id |
|
|
|
|
AND p.STATUS = '已还款' |
|
|
|
|
),0) AS totalRepaymentAmount |
|
|
|
|
cl.account_id = #{req.accountId} |
|
|
|
|
AND cl.project_id = #{req.projectId} |
|
|
|
|
AND cl.school_id = #{req.schoolId} |
|
|
|
|
AND cl.built_in = 0 |
|
|
|
|
<if test='req.searchContent !=null and req.searchContent !=""'> |
|
|
|
|
AND ce.customer_name LIKE CONCAT('%',#{req.searchContent},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test='req.typeId !=null and req.typeId > 2'> |
|
|
|
|
AND cl.loan_date IS NOT NULL |
|
|
|
|
</if> |
|
|
|
|
<if test='req.typeId !=null and req.typeId == 2'> |
|
|
|
|
AND cl.submit = 1 |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
UNION ALL |
|
|
|
|
|
|
|
|
|
SELECT |
|
|
|
|
cl.company_loan_id, |
|
|
|
|
cl.application_number, |
|
|
|
|
cl.create_time, |
|
|
|
|
cl.loan_status, |
|
|
|
|
cl.extension_period, |
|
|
|
|
cl.loan_date, |
|
|
|
|
cl.update_time, |
|
|
|
|
cl.non_performing_loan, |
|
|
|
|
cl.bad_debt_recognition, |
|
|
|
|
cl.built_in, |
|
|
|
|
cl.processing_results, |
|
|
|
|
cl.submit, |
|
|
|
|
CASE |
|
|
|
|
WHEN cl.submit = 0 THEN '进行中' |
|
|
|
|
WHEN cl.submit = 1 THEN '已通过' |
|
|
|
|
END AS processing_status, |
|
|
|
|
ce.customer_name, |
|
|
|
|
ca.loan_type, |
|
|
|
|
ca.loan_application_amount, |
|
|
|
|
ca.total_interest_amount, |
|
|
|
|
ca.loan_amount, |
|
|
|
|
ca.loan_application_date, |
|
|
|
|
pi.business_status, |
|
|
|
|
pi.debt_paying_ability, |
|
|
|
|
pi.credit_status, |
|
|
|
|
pi.adverse_changes, |
|
|
|
|
pi.five_level_classification, |
|
|
|
|
IFNULL(( |
|
|
|
|
SELECT SUM(amount_due) |
|
|
|
|
FROM bank_company_repayment_plan p |
|
|
|
|
WHERE p.company_loan_id = cl.company_loan_id |
|
|
|
|
AND p.status = '已还款' |
|
|
|
|
), 0) AS totalRepaymentAmount |
|
|
|
|
FROM |
|
|
|
|
bank_company_loans cl |
|
|
|
|
LEFT JOIN bank_credit_evaluation ce ON cl.company_loan_id = ce.company_loan_id |
|
|
|
|
LEFT JOIN bank_loan_application ca ON cl.company_loan_id = ca.company_loan_id |
|
|
|
|
LEFT JOIN bank_post_loan_investigation pi ON cl.company_loan_id = pi.company_loan_id |
|
|
|
|
where cl.account_id = #{req.accountId} |
|
|
|
|
and cl.project_id = #{req.projectId} |
|
|
|
|
and cl.school_id = #{req.schoolId} |
|
|
|
|
and cl.built_in = 0 |
|
|
|
|
WHERE |
|
|
|
|
cl.built_in = 1 |
|
|
|
|
<if test='req.searchContent !=null and req.searchContent !=""'> |
|
|
|
|
AND ce.customer_name LIKE CONCAT('%',#{req.searchContent},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test='req.typeId !=null and req.typeId > 2'> |
|
|
|
|
AND cl.loan_date IS NOT NULL |
|
|
|
|
</if> |
|
|
|
|
<if test='req.typeId !=null and req.typeId = 2'> |
|
|
|
|
<if test='req.typeId !=null and req.typeId == 2'> |
|
|
|
|
AND cl.submit = 1 |
|
|
|
|
</if> |
|
|
|
|
GROUP BY cl.company_loan_id |
|
|
|
|
ORDER BY cl.create_time DESC |
|
|
|
|
) AS combined_results |
|
|
|
|
ORDER BY create_time DESC |
|
|
|
|
</select> |
|
|
|
|
<select id="companyLoanListDefault" resultType="com.huoran.judgment_point.entity.vo.CompanyLoanListVO"> |
|
|
|
|
SELECT |
|
|
|
@ -85,7 +199,7 @@ |
|
|
|
|
cl.non_performing_loan, |
|
|
|
|
cl.bad_debt_recognition, |
|
|
|
|
cl.built_in, |
|
|
|
|
ce.customer_name, |
|
|
|
|
ca.customer_name, |
|
|
|
|
ca.loan_type, |
|
|
|
|
ca.loan_application_amount, |
|
|
|
|
ca.total_interest_amount, |
|
|
|
@ -115,6 +229,12 @@ |
|
|
|
|
<if test='req.searchContent !=null and req.searchContent !=""'> |
|
|
|
|
AND ce.customer_name LIKE CONCAT('%',#{req.searchContent},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test='req.typeId !=null and req.typeId > 2'> |
|
|
|
|
AND cl.loan_date IS NOT NULL |
|
|
|
|
</if> |
|
|
|
|
<if test='req.typeId !=null and req.typeId = 2'> |
|
|
|
|
AND cl.submit = 1 |
|
|
|
|
</if> |
|
|
|
|
GROUP BY |
|
|
|
|
cl.company_loan_id |
|
|
|
|
ORDER BY cl.create_time DESC |
|
|
|
|