| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.ruoyi.wisdomarbitrate.service;
-
- import com.ruoyi.common.core.domain.AjaxResult;
- import com.ruoyi.common.core.domain.entity.SysUser;
- import com.ruoyi.common.exception.EsignDemoException;
- import com.ruoyi.wisdomarbitrate.domain.DeptIdentify;
- import com.ruoyi.wisdomarbitrate.domain.FatchRule;
- import com.ruoyi.wisdomarbitrate.domain.SealManage;
- import com.ruoyi.wisdomarbitrate.domain.TemplateManage;
- 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<SealManage> getSealList(DeptIdentify deptIdentify);
-
- AjaxResult updateSealLockStatus(SealManage sealManage);
-
-
- AjaxResult insertDeptIdentify(DeptIdentify deptIdentify);
-
- AjaxResult deleteDeptIdentify(Long id);
-
- AjaxResult updateDeptIdentify(DeptIdentify deptIdentify);
-
- AjaxResult insertTemplate(TemplateManage templateManage , MultipartFile file);
-
- AjaxResult updateTemplate(TemplateManage templateManage, MultipartFile file);
-
- AjaxResult deleteTemplate(Long id);
-
- List<TemplateManage> getTemplateList(DeptIdentify deptIdentify);
-
-
- List<SysUser> selectPostUserByDeptId(DeptIdentify deptIdentify);
-
-
- AjaxResult bindHandler(DeptIdentify deptIdentify);
-
- List<FatchRule> getFatchRuleByTemplateid(TemplateManage templateManage);
-
- AjaxResult saveFatchRules(TemplateManage templateManage);
-
- List<FatchRule> selectColumnandComment();
-
- FatchRule selectColumnbycomment(FatchRule fatchRule);
- }
|