2023-09-21 19:16:12 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.service;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
2023-10-20 15:43:44 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.BatchCaseApplication;
|
2023-09-21 19:16:12 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
2023-10-11 11:47:26 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.vo.LogisticsInfoVO;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
2023-09-21 19:16:12 +08:00
|
|
|
|
|
|
|
|
public interface IAdjudicationService {
|
|
|
|
|
AjaxResult createDocument(CaseApplication caseApplication);
|
2023-09-26 15:07:15 +08:00
|
|
|
|
2023-09-30 14:00:07 +08:00
|
|
|
AjaxResult sendDocumentByEmail(Long id,String appEmail,String resEmail ,String apptrackingNum,String restrackingNum);
|
2023-09-26 15:07:15 +08:00
|
|
|
|
2023-10-11 11:47:26 +08:00
|
|
|
List<LogisticsInfoVO> getLogisticsInfo(CaseApplication caseApplication);
|
2023-10-09 17:36:17 +08:00
|
|
|
|
|
|
|
|
AjaxResult signature(CaseApplication caseApplication);
|
|
|
|
|
|
2023-10-20 16:26:31 +08:00
|
|
|
AjaxResult caseFile( List<Long> ids);
|
2023-10-09 17:36:17 +08:00
|
|
|
|
|
|
|
|
AjaxResult service(Long id, String appEmail, String resEmail, String apptrackingNum, String restrackingNum);
|
|
|
|
|
|
2023-10-09 18:18:04 +08:00
|
|
|
AjaxResult stamp(CaseApplication caseApplication);
|
|
|
|
|
|
2023-10-11 11:47:26 +08:00
|
|
|
AjaxResult getArchivesDetail(Long id);
|
2023-10-18 18:03:27 +08:00
|
|
|
|
|
|
|
|
AjaxResult regenerationDocument(CaseApplication caseApplication);
|
2023-11-16 12:09:36 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据案件id查询邮箱
|
|
|
|
|
* @param id
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
AjaxResult emailByCaseId(Long id);
|
2023-09-21 19:16:12 +08:00
|
|
|
}
|