| 12345678910111213141516171819202122232425262728293031 |
- package com.ruoyi.wisdomarbitrate.service;
-
- import com.ruoyi.common.core.domain.AjaxResult;
- import com.ruoyi.common.exception.EsignDemoException;
- import com.ruoyi.wisdomarbitrate.domain.DeptIdentify;
- import com.ruoyi.wisdomarbitrate.domain.vo.SealListVO;
- import org.springframework.web.multipart.MultipartFile;
-
- import java.util.List;
-
- public interface IDeptIdentifyService {
-
-
- List<DeptIdentify> selectDeptIdentify(DeptIdentify deptIdentify);
-
-
- DeptIdentify selectDeptIndefiUrl(DeptIdentify deptIdentify) throws EsignDemoException;
-
- AjaxResult enableDept(DeptIdentify deptIdentify);
-
- AjaxResult sealUpload(Long id, String sealName , MultipartFile file);
-
-
- AjaxResult receiveNotify(String body);
-
- List<SealListVO> getSealList(DeptIdentify deptIdentify);
-
- AjaxResult updateSealLockStatus(DeptIdentify deptIdentify);
-
-
- }
|