添加文件审批

master
xiong_cl 5 months ago
parent ccfcdd656b
commit b7caa407fb
  1. 13
      shandan-system/src/main/java/com/keyware/shandan/bianmu/service/ReviewRecordService.java

@ -48,4 +48,17 @@ public interface ReviewRecordService extends IBaseService<ReviewRecordVo, String
* @throws Exception -
*/
Boolean directoryReview(String id, ReviewStatus status, String opinion, Boolean sendNotice) throws Exception;
/**
* 资源目录文件审核通过
*
* @param id 目录ID
* @param status 审核状态
* @param opinion 审核意见
* @param sendNotice 是否发送通知
* @return 结果
* @throws Exception -
* xiongcl 20240412
*/
Boolean directoryFileReview(String id, ReviewStatus status, String opinion, Boolean sendNotice) throws Exception;
}