Commit 02166357 authored by huyuchen's avatar huyuchen

社保配置修改

parent c3ec3877
......@@ -50,6 +50,7 @@ import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.List;
/**
......@@ -427,6 +428,26 @@ public class TDispatchInfoController {
}
}
/**
* @Author huyc
* @Description 单个派减
* @Date 16:54 2023/3/9
* @Param
* @return
**/
@Operation(description = "单个派减")
@SysLog("单个派减")
@PostMapping("/reduceSocialAndFund")
public R<List<ErrorMessage>> reduceSocialAndFund(@RequestBody TDispatchReduceVo excelVOList,
@RequestParam(required = false) String orderId) {
List<TDispatchReduceVo> list = new ArrayList<>();
list.add(excelVOList);
YifuUser user = SecurityUtils.getUser();
List<ErrorMessage> errorMessageList = new ArrayList<>();
tDispatchInfoService.batchReduceDispatch(list, errorMessageList, user, orderId);
return R.ok(errorMessageList);
}
/**
* @Author fxj
* @Description 派单申请批量审核
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment