添加卡扣新视图

This commit is contained in:
gityjf 2020-12-11 15:20:16 +08:00
parent 6bab97b12d
commit 0978d63fa7
3 changed files with 257 additions and 0 deletions

View File

@ -601,6 +601,71 @@
</managerProperties>
</manager>
</class>
<class name="vi_manual_dedution" label="手工扣款信息" keyAttributes="ID">
<attributes>
<attribute name="ID" label="标识" type="STRING" length="32"/>
<attribute name="contract_id" label="合同id" type="STRING" length="32"/>
<attribute name="businesstype" label="业务类型" type="STRING" length="32"/>
<attribute name="subjectid" label="主体id" type="STRING" length="32"/>
<attribute name="subjectname" label="主体名称" type="STRING" length="32"/>
<attribute name="distributor_id" label="经销商id" type="STRING" length="32"/>
<attribute name="contract_number" label="合同编号" type="STRING" length="32"/>
<attribute name="payment_number" label="payment_number" type="STRING" length="32"/>
<attribute name="customername" label="客户名称" type="STRING" length="32"/>
<attribute name="acc_number" label="客户账号" type="STRING" length="32"/>
<attribute name="plan_list" label="期次" type="STRING" length="32"/>
<attribute name="plan_date" label="计划日期" type="STRING" length="32"/>
<attribute name="collect_status" label="扣款状态" type="STRING" length="32"/>
<attribute name="collect_msg" label="扣款状态信息" type="STRING" length="32"/>
<attribute name="batch_status" label="处理状态信息" type="STRING" length="32"/>
<attribute name="rent" label="租金" type="DOUBLE" length="32"/>
<attribute name="corpus" label="本金" type="DOUBLE" length="32"/>
<attribute name="interest" label="利息" type="DOUBLE" length="32"/>
<attribute name="penalty" label="罚息" type="DOUBLE" length="32"/>
<attribute name="penalty_sum" label="已还罚息" type="DOUBLE" length="32"/>
<attribute name="rent_over" label="租金余额" type="DOUBLE" length="32"/>
<attribute name="corpus_over" label="本金余额" type="DOUBLE" length="32"/>
<attribute name="interest_over" label="利息余额" type="DOUBLE" length="32"/>
<attribute name="penalty_over" label="罚息余额" type="DOUBLE" length="32"/>
<attribute name="collect_type" label="扣款类型" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="vi_manual_dedution" />
<property name="createKey" value="true" />
</managerProperties>
</manager>
</class>
<class name="VI_YC_RENT_COLLECT" label="扣款信息(邮储)" keyAttributes="ID">
<attributes>
<attribute name="ID" label="标识" type="STRING" length="32"/>
<attribute name="distributor_id" label="经销商id" type="STRING" length="32"/>
<attribute name="contract_id" label="合同主键ID" type="STRING" length="32"/>
<attribute name="payment_number" label="payment_number" type="STRING" length="32"/>
<attribute name="customername" label="客户名称" type="STRING" length="32"/>
<attribute name="acc_number" label="客户账号" type="STRING" length="32"/>
<attribute name="certid" label="证件号" type="STRING" length="40"/>
<attribute name="collect_type" label="扣款类型" type="STRING" length="32"/>
<attribute name="plan_list" label="期次" type="STRING" length="32"/>
<attribute name="plan_date" label="计划日期" type="STRING" length="32"/>
<attribute name="collect_status" label="扣款状态" type="STRING" length="32"/>
<attribute name="batch_status" label="处理状态信息" type="STRING" length="32"/>
<attribute name="rent_over" label="租金余额" type="DOUBLE" length="32"/>
<attribute name="corpus_over" label="本金余额" type="DOUBLE" length="32"/>
<attribute name="interest_over" label="利息余额" type="DOUBLE" length="32"/>
<attribute name="penalty_over" label="罚息余额" type="DOUBLE" length="32"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="VI_YC_RENT_COLLECT" />
<property name="createKey" value="true" />
</managerProperties>
</manager>
</class>
<class name="VI_RENT_COLLECT_4_EBANK" label="扣款信息(网银收款专用)" keyAttributes="ID">
<attributes>
<attribute name="ID" label="标识" type="STRING" length="32"/>

View File

@ -0,0 +1,76 @@
package jbo.loan;
import java.lang.String;
/**
* 扣款信息(邮储) - JBO命名常量类<br><br>
* Note: This file is generated by ADE tools, <em>dont</em> modify it.<br>
*/
public interface VI_YC_RENT_COLLECT{
/**
* 扣款信息(邮储)<br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.loan.VI_YC_RENT_COLLECT";
/**
* 标识 STRING(32)<br>
*/
public static final String ID = "ID";
/**
* 经销商id STRING(32)<br>
*/
public static final String distributor_id = "distributor_id";
/**
* payment_number STRING(32)<br>
*/
public static final String payment_number = "payment_number";
/**
* 客户名称 STRING(32)<br>
*/
public static final String customername = "customername";
/**
* 客户账号 STRING(32)<br>
*/
public static final String acc_number = "acc_number";
/**
* 证件号 STRING(40)<br>
*/
public static final String certid = "certid";
/**
* 扣款类型 STRING(32)<br>
*/
public static final String collect_type = "collect_type";
/**
* 期次 STRING(32)<br>
*/
public static final String plan_list = "plan_list";
/**
* 计划日期 STRING(32)<br>
*/
public static final String plan_date = "plan_date";
/**
* 扣款状态 STRING(32)<br>
*/
public static final String collect_status = "collect_status";
/**
* 处理状态信息 STRING(32)<br>
*/
public static final String batch_status = "batch_status";
/**
* 租金余额 DOUBLE(32)<br>
*/
public static final String rent_over = "rent_over";
/**
* 本金余额 DOUBLE(32)<br>
*/
public static final String corpus_over = "corpus_over";
/**
* 利息余额 DOUBLE(32)<br>
*/
public static final String interest_over = "interest_over";
/**
* 罚息余额 DOUBLE(32)<br>
*/
public static final String penalty_over = "penalty_over";
}

View File

@ -0,0 +1,116 @@
package jbo.loan;
import java.lang.String;
/**
* 手工扣款信息 - JBO命名常量类<br><br>
* Note: This file is generated by ADE tools, <em>dont</em> modify it.<br>
*/
public interface vi_manual_dedution{
/**
* 手工扣款信息<br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.loan.vi_manual_dedution";
/**
* 标识 STRING(32)<br>
*/
public static final String ID = "ID";
/**
* 合同id STRING(32)<br>
*/
public static final String contract_id = "contract_id";
/**
* 业务类型 STRING(32)<br>
*/
public static final String businesstype = "businesstype";
/**
* 主体id STRING(32)<br>
*/
public static final String subjectid = "subjectid";
/**
* 主体名称 STRING(32)<br>
*/
public static final String subjectname = "subjectname";
/**
* 经销商id STRING(32)<br>
*/
public static final String distributor_id = "distributor_id";
/**
* 合同编号 STRING(32)<br>
*/
public static final String contract_number = "contract_number";
/**
* payment_number STRING(32)<br>
*/
public static final String payment_number = "payment_number";
/**
* 客户名称 STRING(32)<br>
*/
public static final String customername = "customername";
/**
* 客户账号 STRING(32)<br>
*/
public static final String acc_number = "acc_number";
/**
* 期次 STRING(32)<br>
*/
public static final String plan_list = "plan_list";
/**
* 计划日期 STRING(32)<br>
*/
public static final String plan_date = "plan_date";
/**
* 扣款状态 STRING(32)<br>
*/
public static final String collect_status = "collect_status";
/**
* 扣款状态信息 STRING(32)<br>
*/
public static final String collect_msg = "collect_msg";
/**
* 处理状态信息 STRING(32)<br>
*/
public static final String batch_status = "batch_status";
/**
* 租金 DOUBLE(32)<br>
*/
public static final String rent = "rent";
/**
* 本金 DOUBLE(32)<br>
*/
public static final String corpus = "corpus";
/**
* 利息 DOUBLE(32)<br>
*/
public static final String interest = "interest";
/**
* 罚息 DOUBLE(32)<br>
*/
public static final String penalty = "penalty";
/**
* 已还罚息 DOUBLE(32)<br>
*/
public static final String penalty_sum = "penalty_sum";
/**
* 租金余额 DOUBLE(32)<br>
*/
public static final String rent_over = "rent_over";
/**
* 本金余额 DOUBLE(32)<br>
*/
public static final String corpus_over = "corpus_over";
/**
* 利息余额 DOUBLE(32)<br>
*/
public static final String interest_over = "interest_over";
/**
* 罚息余额 DOUBLE(32)<br>
*/
public static final String penalty_over = "penalty_over";
/**
* 扣款类型 STRING(32)<br>
*/
public static final String collect_type = "collect_type";
}