|
|
|
@ -13,7 +13,8 @@ |
|
|
|
|
<result column="update_time" property="updateTime"/> |
|
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
<resultMap id="GuaranteeLetterListResponseMap" type="com.daqing.financial.guarantee.model.response.GuaranteeLetterListResponse"> |
|
|
|
|
<resultMap id="GuaranteeLetterListResponseMap" |
|
|
|
|
type="com.daqing.financial.guarantee.model.response.GuaranteeLetterListResponse"> |
|
|
|
|
<id column="id" property="id"/> |
|
|
|
|
<result column="business_code" property="businessCode"/> |
|
|
|
|
<result column="bank" property="bank"/> |
|
|
|
@ -34,7 +35,8 @@ |
|
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
<select id="pageByCondition" resultMap="GuaranteeLetterListResponseMap"> |
|
|
|
|
select lau.id,aai.business_code,cc.name,cc.phone,aai.business_type,lcc.loan_money,lcc.loan_tern,aai.create_time,lau.status, |
|
|
|
|
select |
|
|
|
|
lau.id,aai.business_code,cc.name,cc.phone,aai.business_type,lcc.loan_money,lcc.loan_tern,aai.create_time,lau.status, |
|
|
|
|
aai.bank,lcc.passing_time,lcc.file,lau.audit_opinion,lau.operating_status,bps.business_status,lau.business_id,lau.role_id |
|
|
|
|
from dg_guarantee_letter_assign_user lau |
|
|
|
|
left join dg_apply_amount_info aai on lau.business_id = aai.id |
|
|
|
@ -52,7 +54,8 @@ |
|
|
|
|
AND (lau.user_id = #{userId} or lau.user_id is null OR lau.user_id = '') |
|
|
|
|
</if> |
|
|
|
|
<if test="customerNumberOrName != null and customerNumberOrName != ''"> |
|
|
|
|
AND (aai.business_code LIKE CONCAT('%' #{customerNumberOrName} '%') OR cc.name LIKE CONCAT('%' #{customerNumberOrName} '%')) |
|
|
|
|
AND (aai.business_code LIKE CONCAT('%' #{customerNumberOrName} '%') OR cc.name LIKE CONCAT('%' |
|
|
|
|
#{customerNumberOrName} '%')) |
|
|
|
|
</if> |
|
|
|
|
<if test="status != null and status != ''"> |
|
|
|
|
AND lau.status = #{status} |
|
|
|
@ -78,7 +81,8 @@ |
|
|
|
|
</foreach> |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="selectGuaranteeLetter" resultType="com.daqing.financial.guarantee.model.response.GuaranteeLetterListResponse"> |
|
|
|
|
<select id="selectGuaranteeLetter" |
|
|
|
|
resultType="com.daqing.financial.guarantee.model.response.GuaranteeLetterListResponse"> |
|
|
|
|
select cc.name,lcc.loan_money,lcc.loan_tern,aai.bank,lcc.passing_time |
|
|
|
|
from dg_guarantee_letter_assign_user lau |
|
|
|
|
left join dg_apply_amount_info aai on lau.business_id = aai.id |
|
|
|
@ -89,8 +93,10 @@ |
|
|
|
|
where lau.business_id = #{businessId} and lau.role_id = #{roleId} |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="selectGuaranteeLetterList" resultType="com.daqing.financial.guarantee.model.response.DgNoticeListResponse"> |
|
|
|
|
select au.id,au.role_id,au.company_id,au.business_id,ai.business_code,ai.business_type,ai.apply_amount,ai.apply_time,au.create_time, |
|
|
|
|
<select id="selectGuaranteeLetterList" |
|
|
|
|
resultType="com.daqing.financial.guarantee.model.response.DgNoticeListResponse"> |
|
|
|
|
select |
|
|
|
|
au.id,au.role_id,au.company_id,au.business_id,ai.business_code,ai.business_type,ai.apply_amount,ai.apply_time,au.create_time, |
|
|
|
|
au.status,au.operating_status,cc.name,cc.phone,ps.business_status |
|
|
|
|
from dg_guarantee_letter_assign_user au |
|
|
|
|
left join dg_apply_amount_info ai on au.business_id = ai.id |
|
|
|
|