|
@@ -1,6 +1,7 @@
|
|
|
package com.ym.mec.biz.service.impl;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -56,6 +57,7 @@ public class SysUserCashAccountDetailServiceImpl extends BaseServiceImpl<Long, S
|
|
|
sysUserCashAccountDetail.setComment(comment);
|
|
|
sysUserCashAccountDetail.setTransNo(transNo);
|
|
|
sysUserCashAccountDetail.setTransType(transType);
|
|
|
+ sysUserCashAccountDetail.setCreateTime(new Date());
|
|
|
|
|
|
SysUserCashAccount cashAccount = sysUserCashAccountDao.getLocked(userId);
|
|
|
if (cashAccount == null) {
|