Files
Arbitrate-Backend/ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/IDeptIdentifyService.java
T

38 lines
1.0 KiB
Java
Raw Normal View History

2023-10-30 20:06:38 +08:00
package com.ruoyi.wisdomarbitrate.service;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.exception.EsignDemoException;
import com.ruoyi.wisdomarbitrate.domain.DeptIdentify;
2023-11-15 18:27:09 +08:00
import com.ruoyi.wisdomarbitrate.domain.SealManage;
2023-11-10 18:08:30 +08:00
import com.ruoyi.wisdomarbitrate.domain.vo.SealListVO;
2023-11-09 17:34:12 +08:00
import org.springframework.web.multipart.MultipartFile;
2023-10-30 20:06:38 +08:00
import java.util.List;
public interface IDeptIdentifyService {
List<DeptIdentify> selectDeptIdentify(DeptIdentify deptIdentify);
DeptIdentify selectDeptIndefiUrl(DeptIdentify deptIdentify) throws EsignDemoException;
AjaxResult enableDept(DeptIdentify deptIdentify);
2023-11-09 17:34:12 +08:00
2023-11-17 14:25:03 +08:00
AjaxResult sealUpload(Long id,String sealName ,MultipartFile file);
2023-11-09 17:34:12 +08:00
2023-11-10 18:08:30 +08:00
AjaxResult receiveNotify(String body);
List<SealListVO> getSealList(DeptIdentify deptIdentify);
2023-11-15 18:27:09 +08:00
AjaxResult updateSealLockStatus(SealManage sealManage);
2023-11-10 18:08:30 +08:00
2023-11-15 18:27:09 +08:00
AjaxResult insertDeptIdentify(DeptIdentify deptIdentify);
2023-11-17 14:25:03 +08:00
AjaxResult deleteDeptIdentify(Long id);
AjaxResult updateDeptIdentify(DeptIdentify deptIdentify);
2023-10-30 20:06:38 +08:00
}