Commit 17607b8d authored by hongguangwu's avatar hongguangwu

MVP1.7.17-2000改为5条

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