卡扣回盘日志添加卡扣类型字段
This commit is contained in:
parent
62444b7b93
commit
36bf50c20f
@ -4348,6 +4348,7 @@
|
||||
<attribute name="COLLECT_STATUS" label="BATCH_SN" type="STRING" length="255"/>
|
||||
<attribute name="COLLECT_MSG" label="BATCH_SN" type="STRING" length="255"/>
|
||||
<attribute name="cut_money" label="扣款金额" type="STRING" length="255"/>
|
||||
<attribute name="deduction_type" label="卡扣类型" type="STRING" length="10"/>
|
||||
<attribute name="inputuserid" label="登记人" type="STRING" length="32"/>
|
||||
<attribute name="inputorgid" label="登记部门" type="STRING" length="32"/>
|
||||
<attribute name="updateuserid" label="更新人" type="STRING" length="32"/>
|
||||
|
||||
@ -282,6 +282,7 @@ public class AllinpayPaymentQueryRun implements Runnable{
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.inputorgid, "system");
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.inputtime, StringFunction.getTodayNow());
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.updatetime, System.currentTimeMillis());
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.deduction_type, "ͨÁª¿Û¿î");
|
||||
blog.saveObject(blbo);
|
||||
}
|
||||
|
||||
|
||||
@ -45,6 +45,10 @@ public interface LB_BUCKLE_LOG{
|
||||
* 扣款金额 STRING(255)<br>
|
||||
*/
|
||||
public static final String cut_money = "cut_money";
|
||||
/**
|
||||
* ¿¨¿ÛÀàÐÍ STRING(10)<br>
|
||||
*/
|
||||
public static final String deduction_type = "deduction_type";
|
||||
/**
|
||||
* 登记人 STRING(32)<br>
|
||||
*/
|
||||
|
||||
@ -1179,6 +1179,7 @@ public class CollectAuditInfoCache {
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.inputorgid, "system");
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.inputtime, StringFunction.getTodayNow());
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.updatetime, System.currentTimeMillis());
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.deduction_type, "ÒøÁª¿Û¿î");
|
||||
blog.saveObject(blbo);
|
||||
}
|
||||
|
||||
|
||||
@ -1180,6 +1180,7 @@ public class CollectAuditInfoCacheTj {
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.inputorgid, "system");
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.inputtime, StringFunction.getTodayNow());
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.updatetime, System.currentTimeMillis());
|
||||
blbo.setAttributeValue(LB_BUCKLE_LOG.deduction_type, "ÒøÁª¿Û¿î");
|
||||
blog.saveObject(blbo);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user