智能仲裁后端服务

IDeptIdentifyService.java 847B

12345678910111213141516171819202122232425262728293031
  1. package com.ruoyi.wisdomarbitrate.service;
  2. import com.ruoyi.common.core.domain.AjaxResult;
  3. import com.ruoyi.common.exception.EsignDemoException;
  4. import com.ruoyi.wisdomarbitrate.domain.DeptIdentify;
  5. import com.ruoyi.wisdomarbitrate.domain.vo.SealListVO;
  6. import org.springframework.web.multipart.MultipartFile;
  7. import java.util.List;
  8. public interface IDeptIdentifyService {
  9. List<DeptIdentify> selectDeptIdentify(DeptIdentify deptIdentify);
  10. DeptIdentify selectDeptIndefiUrl(DeptIdentify deptIdentify) throws EsignDemoException;
  11. AjaxResult enableDept(DeptIdentify deptIdentify);
  12. AjaxResult sealUpload(Long id, String sealName , MultipartFile file);
  13. AjaxResult receiveNotify(String body);
  14. List<SealListVO> getSealList(DeptIdentify deptIdentify);
  15. AjaxResult updateSealLockStatus(DeptIdentify deptIdentify);
  16. }