Commit 1efc9c73 authored by huyuchen's avatar huyuchen

导出优化

parent a71889e7
......@@ -24,7 +24,7 @@ public class AddVacationMonitorClearLogDTO implements Serializable {
*/
@NotNull(message = "年假监控id不能为空")
@Schema(description = "年假监控id")
Integer vacationMonitorId;
String vacationMonitorId;
/**
* 清零说明
......
......@@ -35,7 +35,7 @@ public class TVacationMonitorClearLogController {
*/
@Operation(summary = "查询-列表: 查询当前年假所有清零记录", description = "查询-列表: 查询当前年假所有清零记录")
@GetMapping("/getList")
public R<List<TVacationMonitorClearLogVO>> getList(@RequestParam("vacationMonitorId") @Parameter(description = "年假监控id", required = true) Integer vacationMonitorId) {
public R<List<TVacationMonitorClearLogVO>> getList(@RequestParam("vacationMonitorId") @Parameter(description = "年假监控id", required = true) String vacationMonitorId) {
return this.tVacationMonitorClearLogService.getList(vacationMonitorId);
}
......
......@@ -23,7 +23,7 @@ public interface TVacationMonitorClearLogService extends IService<TVacationMonit
* @author: wangweiguo
* @date: 2021-08-16
*/
R<List<TVacationMonitorClearLogVO>> getList(Integer vacationMonitorId);
R<List<TVacationMonitorClearLogVO>> getList(String vacationMonitorId);
/**
* @description: 清零说明: 记录年假清零说明
......
......@@ -43,7 +43,7 @@ implements TVacationMonitorClearLogService {
* @Date: 2023/1/6 11:14
*/
@Override
public R<List<TVacationMonitorClearLogVO>> getList(Integer vacationMonitorId) {
public R<List<TVacationMonitorClearLogVO>> getList(String vacationMonitorId) {
if (vacationMonitorId == null) {
return R.ok(null,VACATION_MONITOR_ID_IS_NOT_NULL);
}
......
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