| | |
| | | package com.panzhihua.sangeshenbian.service; |
| | | |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.utlis.DateUtils; |
| | | import com.panzhihua.sangeshenbian.model.entity.ComplaintAuditRecord; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | |
| | | * @since 2025-02-23 |
| | | */ |
| | | public interface IComplaintAuditRecordService extends IService<ComplaintAuditRecord> { |
| | | // 创建审核记录 |
| | | void createComplaintAuditRecord(Long complaintId, Integer auditType, String comment, Long userId); |
| | | |
| | | // 审核 |
| | | void audit(Long id, Long userId, Integer auditResult, String rejectReason); |
| | | |
| | | } |