You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.9 KiB
73 lines
3.9 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
<mapper namespace="com.daqing.financial.guarantee.mapper.DgStatisticsMapper"> |
|
|
|
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgApplyAmountInfo"> |
|
<id column="id" property="id" /> |
|
<result column="company_id" property="companyId" /> |
|
<result column="presenter_id" property="presenterId" /> |
|
<result column="apply_amount" property="applyAmount" /> |
|
<result column="apply_time" property="applyTime" /> |
|
<result column="bank" property="bank" /> |
|
<result column="amount_wide" property="amountWide" /> |
|
<result column="en_guarantee_measures" property="enGuaranteeMeasures" /> |
|
<result column="business_type" property="businessType" /> |
|
<result column="create_time" property="createTime" /> |
|
<result column="update_time" property="updateTime" /> |
|
</resultMap> |
|
|
|
<!-- 业务统计列表 --> |
|
<select id="list" parameterType="com.daqing.financial.guarantee.model.request.DgStatisticsRequest" resultType="com.daqing.framework.domain.guarantee.po.DgStatisticsPO"> |
|
SELECT c.name AS name,c.phone AS phone,a.presenter_id AS presenter_id,a.apply_amount AS apply_amount,a.apply_time AS apply_time, |
|
a.business_type AS business_type,a.create_time AS create_time,a.business_code AS business_code,p.emp_name AS emp_name, |
|
p.status AS status,p.date_time AS date_time |
|
FROM dg_apply_amount_info AS a |
|
LEFT JOIN (SELECT apply_amount_info_id,emp_name,status,date_time FROM dg_audit_process WHERE (apply_amount_info_id,date_time) IN |
|
(SELECT apply_amount_info_id,MAX(date_time) FROM dg_audit_process GROUP BY apply_amount_info_id)) AS p |
|
ON a.id = p.apply_amount_info_id |
|
LEFT JOIN crms_customer AS c |
|
ON a.company_id = c.id |
|
WHERE c.del_or_not = 0 |
|
<if test="sr.codeOrName != null and sr.codeOrName != ''"> |
|
AND (a.business_code LIKE CONCAT('%',#{sr.codeOrName},'%') OR c.name LIKE CONCAT('%',#{sr.codeOrName},'%')) |
|
</if> |
|
<if test="sr.type != null and sr.type != ''"> |
|
AND a.business_type = #{sr.type} |
|
</if> |
|
<if test="sr.startTime != null and sr.startTime != ''"> |
|
AND a.create_time >= #{sr.startTime} |
|
</if> |
|
<if test="sr.endTime != null and sr.endTime != ''"> |
|
AND a.create_time <= #{sr.endTime} |
|
</if> |
|
ORDER BY a.create_time DESC |
|
</select> |
|
|
|
<!-- 业务统计拒绝列表 --> |
|
<select id="listRefuse" parameterType="com.daqing.financial.guarantee.model.request.DgStatisticsRequest" resultType="com.daqing.framework.domain.guarantee.po.DgStatisticsRefusePO"> |
|
SELECT c.name AS name,c.phone AS phone,a.presenter_id AS presenter_id,a.apply_amount AS apply_amount,a.apply_time AS apply_time, |
|
a.business_type AS business_type,a.create_time AS create_time,a.business_code AS business_code,p.emp_name AS emp_name, |
|
p.status AS status,p.date_time AS date_time,p.remark AS remark |
|
FROM dg_apply_amount_info AS a |
|
LEFT JOIN dg_audit_process AS p |
|
ON a.id = p.apply_amount_info_id |
|
LEFT JOIN crms_customer AS c |
|
ON a.company_id = c.id |
|
WHERE c.del_or_not = 0 |
|
AND p.status LIKE CONCAT('%',#{sr.status},'%') |
|
<if test="sr.codeOrName != null and sr.codeOrName != ''"> |
|
AND (a.business_code LIKE CONCAT('%',#{sr.codeOrName},'%') OR c.name LIKE CONCAT('%',#{sr.codeOrName},'%')) |
|
</if> |
|
<if test="sr.type != null and sr.type != ''"> |
|
AND a.business_type = #{sr.type} |
|
</if> |
|
<if test="sr.startTime != null and sr.startTime != ''"> |
|
AND a.create_time >= #{sr.startTime} |
|
</if> |
|
<if test="sr.endTime != null and sr.endTime != ''"> |
|
AND a.create_time <= #{sr.endTime} |
|
</if> |
|
ORDER BY a.create_time DESC |
|
</select> |
|
|
|
</mapper> |