|
@@ -10,12 +10,13 @@ import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDate;
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
@Service
|
|
@Service
|
|
|
public class InsPlyIncomeLogServiceImpl extends ServiceImpl<InsPlyIncomeLogMapper, InsPlyIncomeLog> implements InsPlyIncomeLogService {
|
|
public class InsPlyIncomeLogServiceImpl extends ServiceImpl<InsPlyIncomeLogMapper, InsPlyIncomeLog> implements InsPlyIncomeLogService {
|
|
|
@Override
|
|
@Override
|
|
|
public void saveLog(InsPlyIncomeLog insPlyIncomeLog) {
|
|
public void saveLog(InsPlyIncomeLog insPlyIncomeLog) {
|
|
|
- insPlyIncomeLog.setCreateTime(LocalDate.now());
|
|
|
|
|
|
|
+ insPlyIncomeLog.setCreateTime(LocalDateTime.now());
|
|
|
baseMapper.insert(insPlyIncomeLog);
|
|
baseMapper.insert(insPlyIncomeLog);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|