|
@@ -1,5 +1,6 @@
|
|
|
package com.txz.cif.web.mng;
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
import com.txz.cif.core.AuthService;
|
|
|
import com.txz.cif.core.Result;
|
|
|
import com.txz.cif.core.ResultGenerator;
|
|
@@ -74,6 +75,7 @@ public class PaymentChannelController {
|
|
|
// paymentChannel.setCreateTime(new Date());
|
|
|
// paymentChannel.setCreateUserId(userId);
|
|
|
PaymentChannel bean = BeanUtil.toBean(paymentChannelParam, PaymentChannel.class);
|
|
|
+ bean.setUpdateTime(DateUtil.date());
|
|
|
bean.setIsValid((byte)1);
|
|
|
bean.setVersion(1);
|
|
|
bean.setCreateUser("lala");
|