用印模拟接口开发

This commit is contained in:
hejinbo
2023-10-09 18:18:04 +08:00
parent 4618bfbc4e
commit 56b4d3fcfc
3 changed files with 19 additions and 0 deletions
@@ -16,4 +16,6 @@ public interface IAdjudicationService {
AjaxResult service(Long id, String appEmail, String resEmail, String apptrackingNum, String restrackingNum);
AjaxResult stamp(CaseApplication caseApplication);
}
@@ -352,6 +352,14 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
return AjaxResult.success("仲裁文书送达成功");
}
@Override
public AjaxResult stamp(CaseApplication caseApplication) {
//更改案件状态(暂时)
caseApplication.setCaseStatus(CaseApplicationConstants.ARBITRATION_DELIVERY);
caseApplicationMapper.submitCaseApplication(caseApplication);
return AjaxResult.success("用印成功,案件状态已改为待仲裁文书送达");
}
public static void main(String[] args) {
try {
List<File> fileList = new ArrayList<>();