添加贴息字段

This commit is contained in:
yjf 2021-09-14 21:51:45 +08:00
parent 56b3dbceb2
commit 189af22e78
3 changed files with 10 additions and 0 deletions

View File

@ -4681,6 +4681,7 @@
<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>
@ -4724,6 +4725,7 @@
<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

@ -145,4 +145,8 @@ public interface LC_CALC_SUBSECTION_INFO{
* ÈÚ×ʽðî×îСֵ STRING(10)<br>
*/
public static final String MIN_LEASE_MONEY = "MIN_LEASE_MONEY";
/**
* ÌùÏ¢½ðî
*/
public static final String DISCOUNT_INTEREST = "DISCOUNT_INTEREST";
}

View File

@ -146,4 +146,8 @@ public interface LC_CALC_SUBSECTION_INFO_HIS{
* ÈÚ×ʽðî×îСֵ STRING(32<br>
*/
public static final String MIN_LEASE_MONEY = "MIN_LEASE_MONEY";
/**
* ÌùÏ¢½ðî
*/
public static final String DISCOUNT_INTEREST = "DISCOUNT_INTEREST";
}