实现归档送达功能
This commit is contained in:
+14
@@ -1,5 +1,6 @@
|
||||
package com.ruoyi.web.controller.wisdomarbitrate.mscase;
|
||||
|
||||
import cn.hutool.core.collection.CollectionUtil;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
@@ -75,6 +76,19 @@ public class MsSignSealController extends BaseController {
|
||||
return AjaxResult.success(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 归档
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/msCaseFile")
|
||||
public AjaxResult msCaseFile(@RequestBody MsSignSealDTO dto){
|
||||
if(CollectionUtil.isEmpty(dto.getIds())){
|
||||
return error("参数校验失败");
|
||||
}
|
||||
return msSignSealService.msCaseFile(dto.getIds());
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user