| | |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import javax.annotation.Resource; |
| | | |
| | | import com.ruoyi.common.utils.SecurityUtils; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.scheduling.annotation.Async; |
| | |
| | | public int insertFundFlowLog(FundFlowLog fundFlowLog) |
| | | { |
| | | fundFlowLog.setCreateTime(DateUtils.getNowDate()); |
| | | fundFlowLog.setCreateBy(SecurityUtils.getUsername()); |
| | | return fundFlowLogMapper.insertFundFlowLog(fundFlowLog); |
| | | } |
| | | |