| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * <p> |
| | | * 诉求上报、延期申请审核表 服务实现类 |
| | |
| | | auditRecord.setAuditStatus(0); |
| | | auditRecord.setComment(comment); |
| | | auditRecord.setCreateBy(userId); |
| | | auditRecord.setCreateTime(DateUtils.getCurrentDate()); |
| | | auditRecord.setCreateTime(new Date()); |
| | | auditRecord.setUpdateBy(userId); |
| | | auditRecord.setUpdateTime(DateUtils.getCurrentDate()); |
| | | auditRecord.setUpdateTime(new Date()); |
| | | save(auditRecord); |
| | | } |
| | | |
| | |
| | | auditRecord.setAuditStatus(auditResult); |
| | | auditRecord.setRejectReason(rejectReason); |
| | | auditRecord.setUpdateBy(userId); |
| | | auditRecord.setUpdateTime(DateUtils.getCurrentDate()); |
| | | auditRecord.setUpdateTime(new Date()); |
| | | save(auditRecord); |
| | | } |
| | | } |