在项目层和合同层添加分段融校验和综合利率字段

This commit is contained in:
tangfutang 2021-10-12 16:08:54 +08:00
parent dd1aa4cc8d
commit c645aa9ac0
5 changed files with 125 additions and 14 deletions

View File

@ -778,6 +778,8 @@
<attribute name="STRATEGIC_COEFFICIENT" label="战略系数" type="DOUBLE" length="22" scale="6"/>
<attribute name="STRATEGY_ROA" label="战略ROA" type="DOUBLE" length="22" scale="6"/>
<attribute name="SPLIT_TYPE" label="是否灵活分润" type="STRING"/>
<attribute name="SUBSECTION_CONDIG" label="分段配置" type="STRING" length="32"/>
<attribute name="COMPREHENSIVE_RATE" label="综合利率" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
@ -1082,6 +1084,7 @@
<attribute name="PERSONAL_INSURANCE" label="个人意外险" type="DOUBLE" length="22" scale="2"/>
<attribute name="DISCOUNT_INTEREST" label="贴息" type="DOUBLE" length="22" scale="2"/>
<attribute name="SUBSECTION_CONDIG" label="分段配置" type="STRING" length="32"/>
<attribute name="COMPREHENSIVE_RATE" label="综合利率" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
@ -4805,6 +4808,16 @@
<attribute name="UPDATEUSERID" label="更新人" type="STRING" length="32"/>
<attribute name="UPDATEORGID" label="更新部门" type="STRING" length="32"/>
<attribute name="UPDATETIME" label="更新时间" type="STRING" length="32"/>
<attribute name="IS_ONLYREAD_INCOME_NUMBER" label="期次是否只读" type="STRING" length="10"/>
<attribute name="IS_FIXED_DISCOUNT" label="贴息金额是否固定金额" type="STRING" length="10"/>
<attribute name="IS_UPDATE_LEASE_MONEY_RATIO" label="融资利率是否可修改" type="STRING" length="10"/>
<attribute name="MAX_LEASE_MONEY" label="融资金额最大值" type="STRING" length="32"/>
<attribute name="MINIMUM_DISCOUNT" label="最小贴息金额" type="STRING" length="10"/>
<attribute name="IS_FIXED_DISCOUNT_RATE" label="贴息后利率是否固定" type="STRING" length="10"/>
<attribute name="MAX_INCOME_NUMBER" label="最大期次" type="STRING" length="32"/>
<attribute name="MIN_INCOME_NUMBER" label="最小期次" type="STRING" length="32"/>
<attribute name="MIN_LEASE_MONEY" label="融资金额最小值" type="STRING" length="32"/>
<attribute name="DISCOUNT_INTEREST" label="贴息金额" type="DOUBLE" length="18" scale="2"/>
</attributes>
<manager>
<managerProperties>
@ -4839,6 +4852,16 @@
<attribute name="UPDATEUSERID" label="更新人" type="STRING" length="32"/>
<attribute name="UPDATEORGID" label="更新部门" type="STRING" length="32"/>
<attribute name="UPDATETIME" label="更新时间" type="STRING" length="32"/>
<attribute name="IS_ONLYREAD_INCOME_NUMBER" label="期次是否只读" type="STRING" length="10"/>
<attribute name="IS_FIXED_DISCOUNT" label="贴息金额是否固定金额" type="STRING" length="10"/>
<attribute name="IS_UPDATE_LEASE_MONEY_RATIO" label="融资利率是否可修改" type="STRING" length="10"/>
<attribute name="MAX_LEASE_MONEY" label="融资金额最大值" type="STRING" length="32"/>
<attribute name="MINIMUM_DISCOUNT" label="最小贴息金额" type="STRING" length="10"/>
<attribute name="IS_FIXED_DISCOUNT_RATE" label="贴息后利率是否固定" type="STRING" length="10"/>
<attribute name="MAX_INCOME_NUMBER" label="最大期次" type="STRING" length="32"/>
<attribute name="MIN_INCOME_NUMBER" label="最小期次" type="STRING" length="32"/>
<attribute name="MIN_LEASE_MONEY" label="融资金额最小值" type="STRING" length="32"/>
<attribute name="DISCOUNT_INTEREST" label="贴息金额" type="DOUBLE" length="18" scale="2"/>
</attributes>
<manager>
<managerProperties>

View File

@ -610,15 +610,23 @@ public interface LC_CONTRACT_CONDITION{
*/
public static final String STRATEGY_ROA = "STRATEGY_ROA";
/**
* 是否灵活分润<br>
*/
* 是否灵活分润 STRING(20)<br>
*/
public static final String SPLIT_TYPE = "SPLIT_TYPE";
/**
* 个人意外险<br>
*/
* 个人意外险 DOUBLE(22)<br>
*/
public static final String PERSONAL_INSURANCE = "PERSONAL_INSURANCE";
/**
* 贴息<br>
*/
* 贴息 DOUBLE(22)<br>
*/
public static final String DISCOUNT_INTEREST = "DISCOUNT_INTEREST";
/**
* 分段配置 STRING(32)<br>
*/
public static final String SUBSECTION_CONDIG = "SUBSECTION_CONDIG";
/**
* 综合利率 STRING(32)<br>
*/
public static final String COMPREHENSIVE_RATE = "COMPREHENSIVE_RATE";
}

View File

@ -109,4 +109,44 @@ public interface LC_CONTRACT_SUBSECTION_INFO{
* 更新时间 STRING(32)<br>
*/
public static final String UPDATETIME = "UPDATETIME";
/**
* 期次是否只读 STRING(10)<br>
*/
public static final String IS_ONLYREAD_INCOME_NUMBER = "IS_ONLYREAD_INCOME_NUMBER";
/**
* 贴息金额是否固定金额 STRING(10)<br>
*/
public static final String IS_FIXED_DISCOUNT = "IS_FIXED_DISCOUNT";
/**
* 融资利率是否可修改 STRING(10)<br>
*/
public static final String IS_UPDATE_LEASE_MONEY_RATIO = "IS_UPDATE_LEASE_MONEY_RATIO";
/**
* 融资金额最大值 STRING(32)<br>
*/
public static final String MAX_LEASE_MONEY = "MAX_LEASE_MONEY";
/**
* 最小贴息金额 STRING(10)<br>
*/
public static final String MINIMUM_DISCOUNT = "MINIMUM_DISCOUNT";
/**
* 贴息后利率是否固定 STRING(10)<br>
*/
public static final String IS_FIXED_DISCOUNT_RATE = "IS_FIXED_DISCOUNT_RATE";
/**
* 最大期次 STRING(32)<br>
*/
public static final String MAX_INCOME_NUMBER = "MAX_INCOME_NUMBER";
/**
* 最小期次 STRING(32)<br>
*/
public static final String MIN_INCOME_NUMBER = "MIN_INCOME_NUMBER";
/**
* 融资金额最小值 STRING(32)<br>
*/
public static final String MIN_LEASE_MONEY = "MIN_LEASE_MONEY";
/**
* 贴息金额 DOUBLE(18)<br>
*/
public static final String DISCOUNT_INTEREST = "DISCOUNT_INTEREST";
}

View File

@ -610,15 +610,15 @@ public interface LC_PROJ_CONDITION{
*/
public static final String STRATEGY_ROA = "STRATEGY_ROA";
/**
* 是否灵活分润<br>
*/
* 是否灵活分润 STRING(20)<br>
*/
public static final String SPLIT_TYPE = "SPLIT_TYPE";
/**
* 个人意外险<br>
*/
public static final String PERSONAL_INSURANCE = "PERSONAL_INSURANCE";
* 分段配置 STRING(32)<br>
*/
public static final String SUBSECTION_CONDIG = "SUBSECTION_CONDIG";
/**
* 贴息<br>
*/
public static final String DISCOUNT_INTEREST = "DISCOUNT_INTEREST";
* 综合利率 STRING(32)<br>
*/
public static final String COMPREHENSIVE_RATE = "COMPREHENSIVE_RATE";
}

View File

@ -109,4 +109,44 @@ public interface LC_PROJ_SUBSECTION_INFO{
* 更新时间 STRING(32)<br>
*/
public static final String UPDATETIME = "UPDATETIME";
/**
* 期次是否只读 STRING(10)<br>
*/
public static final String IS_ONLYREAD_INCOME_NUMBER = "IS_ONLYREAD_INCOME_NUMBER";
/**
* 贴息金额是否固定金额 STRING(10)<br>
*/
public static final String IS_FIXED_DISCOUNT = "IS_FIXED_DISCOUNT";
/**
* 融资利率是否可修改 STRING(10)<br>
*/
public static final String IS_UPDATE_LEASE_MONEY_RATIO = "IS_UPDATE_LEASE_MONEY_RATIO";
/**
* 融资金额最大值 STRING(32)<br>
*/
public static final String MAX_LEASE_MONEY = "MAX_LEASE_MONEY";
/**
* 最小贴息金额 STRING(10)<br>
*/
public static final String MINIMUM_DISCOUNT = "MINIMUM_DISCOUNT";
/**
* 贴息后利率是否固定 STRING(10)<br>
*/
public static final String IS_FIXED_DISCOUNT_RATE = "IS_FIXED_DISCOUNT_RATE";
/**
* 最大期次 STRING(32)<br>
*/
public static final String MAX_INCOME_NUMBER = "MAX_INCOME_NUMBER";
/**
* 最小期次 STRING(32)<br>
*/
public static final String MIN_INCOME_NUMBER = "MIN_INCOME_NUMBER";
/**
* 融资金额最小值 STRING(32)<br>
*/
public static final String MIN_LEASE_MONEY = "MIN_LEASE_MONEY";
/**
* 贴息金额 DOUBLE(18)<br>
*/
public static final String DISCOUNT_INTEREST = "DISCOUNT_INTEREST";
}