智能仲裁后端服务

IDeptIdentifyService.java 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.ruoyi.wisdomarbitrate.service;
  2. import com.ruoyi.common.core.domain.AjaxResult;
  3. import com.ruoyi.common.core.domain.entity.SysUser;
  4. import com.ruoyi.common.exception.EsignDemoException;
  5. import com.ruoyi.wisdomarbitrate.domain.DeptIdentify;
  6. import com.ruoyi.wisdomarbitrate.domain.FatchRule;
  7. import com.ruoyi.wisdomarbitrate.domain.SealManage;
  8. import com.ruoyi.wisdomarbitrate.domain.TemplateManage;
  9. import com.ruoyi.wisdomarbitrate.domain.vo.SealListVO;
  10. import org.springframework.web.multipart.MultipartFile;
  11. import java.util.List;
  12. public interface IDeptIdentifyService {
  13. List<DeptIdentify> selectDeptIdentify(DeptIdentify deptIdentify);
  14. DeptIdentify selectDeptIndefiUrl(DeptIdentify deptIdentify) throws EsignDemoException;
  15. AjaxResult enableDept(DeptIdentify deptIdentify);
  16. AjaxResult sealUpload(Long id,String sealName ,MultipartFile file);
  17. AjaxResult receiveNotify(String body);
  18. List<SealManage> getSealList(DeptIdentify deptIdentify);
  19. AjaxResult updateSealLockStatus(SealManage sealManage);
  20. AjaxResult insertDeptIdentify(DeptIdentify deptIdentify);
  21. AjaxResult deleteDeptIdentify(Long id);
  22. AjaxResult updateDeptIdentify(DeptIdentify deptIdentify);
  23. AjaxResult insertTemplate(TemplateManage templateManage , MultipartFile file);
  24. AjaxResult updateTemplate(TemplateManage templateManage, MultipartFile file);
  25. AjaxResult deleteTemplate(Long id);
  26. List<TemplateManage> getTemplateList(DeptIdentify deptIdentify);
  27. List<SysUser> selectPostUserByDeptId(DeptIdentify deptIdentify);
  28. AjaxResult bindHandler(DeptIdentify deptIdentify);
  29. List<FatchRule> getFatchRuleByTemplateid(TemplateManage templateManage);
  30. AjaxResult saveFatchRules(TemplateManage templateManage);
  31. List<FatchRule> selectColumnandComment();
  32. FatchRule selectColumnbycomment(FatchRule fatchRule);
  33. }