[录制计划] 增加录制计划执行

This commit is contained in:
648540858
2024-11-28 18:00:52 +08:00
parent a739701621
commit 8a06562a88
7 changed files with 148 additions and 69 deletions

View File

@@ -58,4 +58,7 @@ public interface RecordPlanMapper {
@Delete("DELETE FROM wvp_record_plan_item WHERE plan_id = #{planId}")
void cleanItems(@Param("planId") Integer planId);
@Select("select plan_id from wvp_record_plan_item where week_day = #{week} and start >= #{index} and stop <= #{index} group by plan_id")
List<Integer> queryStart(@Param("week") int week, @Param("index") int index);
}