24 lines
620 B
Java
24 lines
620 B
Java
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 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(DeptIdentify deptIdentify, MultipartFile file);
|
|
|
|
|
|
}
|