diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taskinfo/vo/TaskInfoPageReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taskinfo/vo/TaskInfoPageReqVO.java index 1e358c7..a80110b 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taskinfo/vo/TaskInfoPageReqVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taskinfo/vo/TaskInfoPageReqVO.java @@ -80,7 +80,7 @@ public class TaskInfoPageReqVO extends PageParam { */ @Schema(description = "任务标签集合", example = "1") - private List tagList; + private String tagList; @Schema(description = "按时间查询", example = "1") private Integer selectWeek; diff --git a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml index 3ca9bd0..1d8ddee 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml +++ b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml @@ -18,8 +18,7 @@ left join enterprise_inspections ei on t.id = ei.task_id left join inspections_log il on ei.id = il.inspections_id left join enterprises e on e.id = ei.enterprise_id - left join task_tag tt on t.id = tt.task_id - left join tag_library tl on tl.id = tt.tag_id + left join tag_library tl on tl.id = t.task_type WHERE t.deleted = 0 and ei.deleted = 0 and ei.status = 2 @@ -38,10 +37,7 @@ AND t.end_date between #{params.startTime} and #{params.endTime} - AND tl.id in - - #{tagId} - + AND t.task_type = #{params.tagList} GROUP BY t.id ORDER BY t.create_time DESC