885 lines
35 KiB
XML
885 lines
35 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<TenwaReport>
|
|
<datasources>
|
|
<datasource>
|
|
<id>2c9023815726a036015726a496b00001</id>
|
|
<dataSourceName>eleasing_mysql</dataSourceName>
|
|
<dataSourceType>SPRING</dataSourceType>
|
|
<jndi>dataSourceJDBC</jndi>
|
|
<url></url>
|
|
<username></username>
|
|
<driverName></driverName>
|
|
<password></password>
|
|
<dialect>com.tenwa.report.query.dialect.MysqlDialect</dialect>
|
|
<dialectName>Mysql</dialectName>
|
|
</datasource>
|
|
</datasources>
|
|
<reports>
|
|
<report>
|
|
<id>2c9c81b5687ebb7e016a90e304ca0572</id>
|
|
<name>催收业务表</name>
|
|
<enname>CollectionBusiness</enname>
|
|
<code>REPORT_CODE_1557209581845</code>
|
|
<isActived>true</isActived>
|
|
<position>38</position>
|
|
<reportType>REPORT</reportType>
|
|
<parentReport>2c9c81b7685efbbc016931cf8bf0000d</parentReport>
|
|
<children/>
|
|
<layouts>
|
|
<layout>2c9c81b5687ebb7e016a90e304cc0596</layout>
|
|
</layouts>
|
|
</report>
|
|
</reports>
|
|
<tables>
|
|
<table>
|
|
<id>2c9c81b5687ebb7e016a90e304c50571</id>
|
|
<name>催收业务表2</name>
|
|
<enname>CollectionBusiness</enname>
|
|
<reportDataSource>2c9023815726a036015726a496b00001</reportDataSource>
|
|
<queryType>COMPLEXSQL</queryType>
|
|
<sql>SELECT
|
|
t.project_no,
|
|
t.CONTRACT_NO,
|
|
t.FULLNAME,
|
|
t.mobile,
|
|
t. NAME,
|
|
t.tel,
|
|
t.FULLNAME1,
|
|
t.mobile1,
|
|
t.FULLNAME2,
|
|
t.mobile2,
|
|
t.FULLNAME3,
|
|
t.mobile3,
|
|
t.over_Principal,
|
|
t.over_interest,
|
|
t.over_penalty,
|
|
t.over_money + t.over_penalty as over_money ,
|
|
t.corpus_overs,
|
|
t.interest_overs,
|
|
t.rent_overs,
|
|
t.distributor_name,
|
|
t.LICENSE_PLATE_NUMBER,
|
|
t.over_days,
|
|
t.return_period,
|
|
t.over_list,
|
|
t.over_num,
|
|
t.CERTID,
|
|
t.certid1,
|
|
t.certid2,
|
|
t.certid3,
|
|
t.certid4
|
|
FROM
|
|
(
|
|

|
|
SELECT
|
|
o.project_manage,
|
|
lpi.project_no,
|
|
o.CONTRACT_NO,
|
|
cp.FULLNAME AS FULLNAME,
|
|
cp.mobile AS mobile,
|
|
cf.`name` AS NAME,
|
|
cf.tel,
|
|
a1.fullname AS FULLNAME1,
|
|
a1.mobile AS mobile1,
|
|
a2.fullname AS FULLNAME2,
|
|
a2.mobile AS mobile2,
|
|
a3.fullname AS FULLNAME3,
|
|
a3.mobile AS mobile3,
|
|
(
|
|
vo.over_money - vo.over_interest
|
|
) AS over_Principal,
|
|
vo.over_interest,
|
|
vo.over_penalty,
|
|
vo.over_money,
|
|
z.corpus_overs,
|
|
z.interest_overs,
|
|
z.rent_overs,
|
|
di.distributor_name,
|
|
lec.LICENSE_PLATE_NUMBER,
|
|
vo.over_days,
|
|
(q.over_list-1)
|
|
AS return_period,
|
|
(
|
|
lcc.INCOME_NUMBER - q.over_list+1
|
|
) AS over_list,
|
|
q.over_num,
|
|
cp.CERTID,
|
|
cf.certid AS certid1,
|
|
a1.CERTID AS certid2,
|
|
a2.CERTID AS certid3,
|
|
a3.CERTID AS certid4,
|
|
cf.Partner_
|
|
FROM
|
|
lb_contract_info o
|
|
LEFT JOIN lb_project_info lpi ON o.PROJECT_ID = lpi.ID
|
|
LEFT JOIN lb_union_lessee lul ON o.PROJECT_ID = lul.PROJECT_ID
|
|
LEFT JOIN CUSTOMER_PERSON cp ON cp.CUSTOMERID = lul.CUSTOMER_ID
|
|
LEFT JOIN CUSTOMER_FAMILY cf ON o.PROJECT_ID = cf.PROJECT_ID AND cf.Partner_='Y'
|
|
LEFT JOIN distributor_info di ON di.distributor_no = o.distributor_id
|
|
LEFT JOIN LB_EQUIPMENT_CAR lec ON o.FLOWUNID = lec.FLOWUNID
|
|
LEFT JOIN VI_OVERDUE_RENT_PLAN_SUM vo ON vo.contract_id = O.id
|
|
LEFT JOIN LC_CALC_CONDITION lcc ON o.id = lcc.contract_id
|
|
LEFT JOIN (
|
|
SELECT
|
|
contract_id,
|
|
SUM(corpus_over) AS corpus_overs,
|
|
SUM(interest_over) AS interest_overs,
|
|
SUM(rent_over) AS rent_overs
|
|
FROM
|
|
vi_lc_rent_plan
|
|
GROUP BY
|
|
contract_id
|
|
) z ON z.contract_id = o.ID
|
|
LEFT JOIN (
|
|
SELECT
|
|
contract_id,
|
|
COUNT(plan_list) AS over_num,
|
|
MAX(PLAN_LIST) AS over_list
|
|
FROM
|
|
vi_overdue_rent_plan
|
|
WHERE
|
|
Overdue_days > 0
|
|
GROUP BY
|
|
contract_id
|
|
) q ON q.contract_id = o.ID
|
|
LEFT JOIN (
|
|
SELECT
|
|
(
|
|
@i := CASE
|
|
WHEN @pre_parent_code = project_id THEN
|
|
@i + 1
|
|
ELSE
|
|
1
|
|
END
|
|
) rownum,
|
|
lb_guarantee_unit.*, (
|
|
@pre_parent_code := project_id
|
|
)
|
|
FROM
|
|
lb_guarantee_unit,
|
|
(
|
|
SELECT
|
|
@i := 0,
|
|
@pre_parent_code := ''
|
|
) AS a
|
|
GROUP BY
|
|
project_id,
|
|
id
|
|
ORDER BY
|
|
project_id
|
|
) a1 ON a1.project_id = o.project_id
|
|
AND a1.rownum = 1
|
|
LEFT JOIN (
|
|
SELECT
|
|
(
|
|
@i := CASE
|
|
WHEN @pre_parent_code = project_id THEN
|
|
@i + 1
|
|
ELSE
|
|
1
|
|
END
|
|
) rownum,
|
|
lb_guarantee_unit.*, (
|
|
@pre_parent_code := project_id
|
|
)
|
|
FROM
|
|
lb_guarantee_unit,
|
|
(
|
|
SELECT
|
|
@i := 0,
|
|
@pre_parent_code := ''
|
|
) AS a
|
|
GROUP BY
|
|
project_id,
|
|
id
|
|
ORDER BY
|
|
project_id
|
|
) a2 ON a2.project_id = o.project_id
|
|
AND a2.rownum = 2
|
|
LEFT JOIN (
|
|
SELECT
|
|
(
|
|
@i := CASE
|
|
WHEN @pre_parent_code = project_id THEN
|
|
@i + 1
|
|
ELSE
|
|
1
|
|
END
|
|
) rownum,
|
|
lb_guarantee_unit.*, (
|
|
@pre_parent_code := project_id
|
|
)
|
|
FROM
|
|
lb_guarantee_unit,
|
|
(
|
|
SELECT
|
|
@i := 0,
|
|
@pre_parent_code := ''
|
|
) AS a
|
|
GROUP BY
|
|
project_id,
|
|
id
|
|
ORDER BY
|
|
project_id
|
|
) a3 ON a3.project_id = o.project_id
|
|
AND a3.rownum = 3
|
|
WHERE vo.over_money>0 AND o.CONTRACT_STATUS='31'
|
|
AND o.PROJECT_MANAGE IN (SELECT
|
|
userid
|
|
FROM
|
|
user_role
|
|
WHERE
|
|
roleid = '800R00000044')
|
|
) t</sql>
|
|
<sqlParamValue></sqlParamValue>
|
|
<columns>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e0</id>
|
|
<name>project_no</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>申请号码</label>
|
|
<enLabel>project_no</enLabel>
|
|
<width>100</width>
|
|
<position>30</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805fa</id>
|
|
<name>CONTRACT_NO</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>合同号</label>
|
|
<enLabel>CONTRACT_NO</enLabel>
|
|
<width>100</width>
|
|
<position>31</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805fb</id>
|
|
<name>FULLNAME</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>主借人姓名</label>
|
|
<enLabel>FULLNAME</enLabel>
|
|
<width>100</width>
|
|
<position>32</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805fc</id>
|
|
<name>mobile</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>主借人手机号</label>
|
|
<enLabel>mobile</enLabel>
|
|
<width>100</width>
|
|
<position>33</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f4</id>
|
|
<name>NAME</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>共借人姓名</label>
|
|
<enLabel>NAME</enLabel>
|
|
<width>100</width>
|
|
<position>34</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e6</id>
|
|
<name>tel</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>共借人手机号</label>
|
|
<enLabel>tel</enLabel>
|
|
<width>100</width>
|
|
<position>35</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f8</id>
|
|
<name>FULLNAME1</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人1姓名</label>
|
|
<enLabel>FULLNAME1</enLabel>
|
|
<width>100</width>
|
|
<position>36</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e3</id>
|
|
<name>mobile1</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人1手机号</label>
|
|
<enLabel>mobile1</enLabel>
|
|
<width>100</width>
|
|
<position>37</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805ef</id>
|
|
<name>FULLNAME2</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人2姓名</label>
|
|
<enLabel>FULLNAME2</enLabel>
|
|
<width>100</width>
|
|
<position>38</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e7</id>
|
|
<name>mobile2</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人2手机号</label>
|
|
<enLabel>mobile2</enLabel>
|
|
<width>100</width>
|
|
<position>39</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805df</id>
|
|
<name>FULLNAME3</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人3姓名</label>
|
|
<enLabel>FULLNAME3</enLabel>
|
|
<width>100</width>
|
|
<position>40</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f3</id>
|
|
<name>mobile3</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人3手机号</label>
|
|
<enLabel>mobile3</enLabel>
|
|
<width>100</width>
|
|
<position>41</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805ea</id>
|
|
<name>over_Principal</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>逾期本金</label>
|
|
<enLabel>over_Principal</enLabel>
|
|
<width>100</width>
|
|
<position>42</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e1</id>
|
|
<name>over_interest</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>逾期利息</label>
|
|
<enLabel>over_interest</enLabel>
|
|
<width>100</width>
|
|
<position>43</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e5</id>
|
|
<name>over_penalty</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>逾期罚息</label>
|
|
<enLabel>over_penalty</enLabel>
|
|
<width>100</width>
|
|
<position>44</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e4</id>
|
|
<name>over_money</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>逾期金额合计</label>
|
|
<enLabel>over_money</enLabel>
|
|
<width>100</width>
|
|
<position>45</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805eb</id>
|
|
<name>corpus_overs</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>未还本金</label>
|
|
<enLabel>corpus_overs</enLabel>
|
|
<width>100</width>
|
|
<position>46</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f7</id>
|
|
<name>interest_overs</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>未还所有利息</label>
|
|
<enLabel>interest_overs</enLabel>
|
|
<width>100</width>
|
|
<position>47</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805ed</id>
|
|
<name>rent_overs</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>总应收</label>
|
|
<enLabel>rent_overs</enLabel>
|
|
<width>100</width>
|
|
<position>48</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e2</id>
|
|
<name>distributor_name</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>经销商名称</label>
|
|
<enLabel>distributor_name</enLabel>
|
|
<width>100</width>
|
|
<position>49</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805ec</id>
|
|
<name>LICENSE_PLATE_NUMBER</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>车牌号</label>
|
|
<enLabel>LICENSE_PLATE_NUMBER</enLabel>
|
|
<width>100</width>
|
|
<position>50</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f5</id>
|
|
<name>over_days</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>逾期天数</label>
|
|
<enLabel>over_days</enLabel>
|
|
<width>100</width>
|
|
<position>51</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e8</id>
|
|
<name>return_period</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>已还期数</label>
|
|
<enLabel>return_period</enLabel>
|
|
<width>100</width>
|
|
<position>52</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f0</id>
|
|
<name>over_list</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>未还期数</label>
|
|
<enLabel>over_list</enLabel>
|
|
<width>100</width>
|
|
<position>53</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f2</id>
|
|
<name>over_num</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>历史逾期情况</label>
|
|
<enLabel>over_num</enLabel>
|
|
<width>100</width>
|
|
<position>54</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f6</id>
|
|
<name>CERTID</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>主借款人身份证号</label>
|
|
<enLabel>CERTID</enLabel>
|
|
<width>100</width>
|
|
<position>55</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f1</id>
|
|
<name>certid1</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>主借人身份证号</label>
|
|
<enLabel>certid1</enLabel>
|
|
<width>100</width>
|
|
<position>56</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805e9</id>
|
|
<name>certid2</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人1身份证号</label>
|
|
<enLabel>certid2</enLabel>
|
|
<width>100</width>
|
|
<position>57</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805ee</id>
|
|
<name>certid3</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人2身份证号</label>
|
|
<enLabel>certid3</enLabel>
|
|
<width>100</width>
|
|
<position>58</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
<column>
|
|
<id>2c9c81b5687ebb7e016b225b16f805f9</id>
|
|
<name>certid4</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>担保人3身份证号</label>
|
|
<enLabel>certid4</enLabel>
|
|
<width>100</width>
|
|
<position>59</position>
|
|
<isVisible>true</isVisible>
|
|
<color></color>
|
|
<isCountTotal>false</isCountTotal>
|
|
<isCountSubTotal>false</isCountSubTotal>
|
|
<isGroupby>false</isGroupby>
|
|
<isMerge>false</isMerge>
|
|
<action></action>
|
|
<actionParamters></actionParamters>
|
|
<actionCondition></actionCondition>
|
|
</column>
|
|
</columns>
|
|
<controls/>
|
|
<searchs/>
|
|
<searchExpress></searchExpress>
|
|
<filters>
|
|
<filter>
|
|
<id>2c9c81b5687ebb7e016a90e304cc0593</id>
|
|
<name>mobile</name>
|
|
<enname>mobile</enname>
|
|
<label>主借人手机号</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>0</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5687ebb7e016a90e304cc0594</id>
|
|
<name>project_no</name>
|
|
<enname>project_no</enname>
|
|
<label>申请号码</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>1</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5687ebb7e016a90e304cc0595</id>
|
|
<name>FULLNAME</name>
|
|
<enname>FULLNAME</enname>
|
|
<label>主借人姓名</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>2</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5687ebb7e016a90e304cc0591</id>
|
|
<name>distributor_name</name>
|
|
<enname>distributor_name</enname>
|
|
<label>经销商</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>3</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5687ebb7e016a90e304cc0592</id>
|
|
<name>LICENSE_PLATE_NUMBER</name>
|
|
<enname>LICENSE_PLATE_NUMBER</enname>
|
|
<label>车牌号</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>4</position>
|
|
</filter>
|
|
</filters>
|
|
<filterExpress></filterExpress>
|
|
<pageSize>20</pageSize>
|
|
<showRowNumber>true</showRowNumber>
|
|
<showTotalTitle>false</showTotalTitle>
|
|
<isScale>false</isScale>
|
|
<isCache>false</isCache>
|
|
<isExcel>false</isExcel>
|
|
</table>
|
|
</tables>
|
|
<charts/>
|
|
<pages/>
|
|
<layouts>
|
|
<layout>
|
|
<id>2c9c81b5687ebb7e016a90e304cc0596</id>
|
|
<divHeight>0</divHeight>
|
|
<divWidth>0</divWidth>
|
|
<position>0</position>
|
|
<contentId>TABLE#2c9c81b5687ebb7e016a90e304c50571</contentId>
|
|
<report>2c9c81b5687ebb7e016a90e304ca0572</report>
|
|
<contentType>TABLE</contentType>
|
|
</layout>
|
|
</layouts>
|
|
</TenwaReport>
|