郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.gkhy.safePlatform.account.service.baseService;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.account.entity.schedule.GroupStrategyTimeTableInfo;
import com.gkhy.safePlatform.account.entity.schedule.GroupStrategyTimeTableInfoDO;
import com.gkhy.safePlatform.account.model.query.db.GroupScheduleDBQuery;
 
import java.time.LocalDate;
import java.util.List;
 
public interface GroupStrategyTimeTableInfoService extends IService<GroupStrategyTimeTableInfo> {
 
    /**
    * @Description: 批量保存班组作息
    */
    void saveTimeTableInfos(List<GroupStrategyTimeTableInfo> timeTableInfos);
 
    /**
    * @Description: 获取班组信息
    */
    List<GroupStrategyTimeTableInfoDO> getGroupTableTableInfo(GroupScheduleDBQuery groupScheduleDBQuery);
 
    /**
    * @Description: 删除班组排班信息
    */
    void deleteByGroupStrategyId(Long groupStrategyId, LocalDate firstScheduleDate);
 
    /**
    * @Description: 获取时间在 localDate 之后并且 的班组
    */
    List<GroupStrategyTimeTableInfoDO> getGroupTimeTableInfosByGroupId(Long groupId, LocalDate localDate);
 
 
}