Commit 17607b8d authored by hongguangwu's avatar hongguangwu

MVP1.7.17-2000改为5条

parent daf15711
......@@ -89,8 +89,8 @@ public class TEmpContractAlertController {
return R.ok(tEmpContractAlertService.getAutoPage(page, searchVo));
}
@Operation(description = "合同待续签数量查询")
@PostMapping("/getAutoContractCount")
public R<Long> getAutoContractCount(@RequestBody ContractAlertSearchVo searchVo) {
@GetMapping("/getAutoContractCount")
public R<Long> getAutoContractCount(ContractAlertSearchVo searchVo) {
setAuth(searchVo);
return R.ok(tEmpContractAlertService.getAutoContractCount(searchVo));
}
......
......@@ -73,8 +73,8 @@ public class EmployeeRegistrationLeaveController {
}
@Operation(description = "离职待办数量查询")
@PostMapping("/getRegistrationLeaveCount")
public R<Long> getRegistrationLeaveCount(@RequestBody EmployeeRegistrationLeaveSearchVo searchVo) {
@GetMapping("/getRegistrationLeaveCount")
public R<Long> getRegistrationLeaveCount(EmployeeRegistrationLeaveSearchVo searchVo) {
this.setLeaveBaseAuth(searchVo);
return R.ok(employeeRegistrationLeaveService.getRegistrationLeaveCount(searchVo));
}
......
......@@ -473,7 +473,7 @@ when '4' then '待减员' when '5' then '待办理' when '6' then '减员中' wh
</if>
</where>
ORDER BY b.create_time desc,b.id asc
limit 5
limit 2000
</select>
<!--离职确认列表-->
<select id="getEmployeeRegistrationLeaveConfirmTablePage" resultMap="tableAndExportMap">
......
......@@ -74,8 +74,8 @@ public class TInsurancesWarnController {
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R
**/
@Operation(description = "商险待续签保数量查询")
@PostMapping("/getInsuranceAlertCount")
public R<Long> getInsuranceAlertCount(@RequestBody TInsuranceAlertSearchVo tInsuranceAlert) {
@GetMapping("/getInsuranceAlertCount")
public R<Long> getInsuranceAlertCount(TInsuranceAlertSearchVo tInsuranceAlert) {
YifuUser user = SecurityUtils.getUser();
menuUtil.setAuthSql(user, tInsuranceAlert);
return R.ok(insuranceWarnService.getInsuranceAlertCount(tInsuranceAlert));
......
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