1.提交遗漏jbo

This commit is contained in:
zhangbb 2020-09-10 15:50:18 +08:00
parent 58d5da7d30
commit d248ca93a4
2 changed files with 18 additions and 28 deletions

View File

@ -4425,14 +4425,12 @@
<attribute name="customer_name" label="customer_name" type="STRING"/>
<attribute name="plan_list" label="plan_list" type="STRING"/>
<attribute name="splitting_money" label="splitting_money" type="STRING"/>
<attribute name="charge_1" label="charge_1" type="STRING"/>
<attribute name="ratio_1" label="ratio_1" type="STRING"/>
<attribute name="charge_2" label="charge_2" type="STRING"/>
<attribute name="ratio_2" label="ratio_2" type="STRING"/>
<attribute name="charge_3" label="charge_3" type="STRING"/>
<attribute name="ratio_3" label="ratio_3" type="STRING"/>
<attribute name="charge_4" label="charge_4" type="STRING"/>
<attribute name="ratio_4" label="ratio_4" type="STRING"/>
<attribute name="lccc_charge" label="lccc_charge" type="STRING"/>
<attribute name="lccc_ratio" label="lccc_ratio" type="STRING"/>
<attribute name="lccc_list" label="lccc_list" type="STRING"/>
<attribute name="sum_sp" label="sum_sp" type="STRING"/>
<attribute name="should_sp" label="should_sp" type="STRING"/>
<attribute name="cur_sp" label="cur_sp" type="STRING"/>
</attributes>
<manager>
<managerProperties>

View File

@ -38,35 +38,27 @@ public interface VI_SPLITTING_PAY{
*/
public static final String splitting_money = "splitting_money";
/**
* charge_1 STRING(20)<br>
* lccc_charge STRING(20)<br>
*/
public static final String charge_1 = "charge_1";
public static final String lccc_charge = "lccc_charge";
/**
* ratio_1 STRING(20)<br>
* lccc_ratio STRING(20)<br>
*/
public static final String ratio_1 = "ratio_1";
public static final String lccc_ratio = "lccc_ratio";
/**
* charge_2 STRING(20)<br>
* lccc_list STRING(20)<br>
*/
public static final String charge_2 = "charge_2";
public static final String lccc_list = "lccc_list";
/**
* ratio_2 STRING(20)<br>
* sum_sp STRING(20)<br>
*/
public static final String ratio_2 = "ratio_2";
public static final String sum_sp = "sum_sp";
/**
* charge_3 STRING(20)<br>
* should_sp STRING(20)<br>
*/
public static final String charge_3 = "charge_3";
public static final String should_sp = "should_sp";
/**
* ratio_3 STRING(20)<br>
* cur_sp STRING(20)<br>
*/
public static final String ratio_3 = "ratio_3";
/**
* charge_4 STRING(20)<br>
*/
public static final String charge_4 = "charge_4";
/**
* ratio_4 STRING(20)<br>
*/
public static final String ratio_4 = "ratio_4";
public static final String cur_sp = "cur_sp";
}