liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.dingzhuo.energy.basic.data.workforce.service;
 
import com.dingzhuo.energy.basic.data.workforce.domain.Rostering;
import com.dingzhuo.energy.basic.data.workforce.domain.RosteringCopy;
import com.dingzhuo.energy.basic.data.workforce.domain.RosteringScheme;
 
import java.util.List;
 
/**
 * 排班表查询Service接口
 * 
 * @author liuli
 * @date 2020-05-13
 */
public interface IRosteringService 
{
    /**
     * 查询轮值方案名称
     * @return 轮值方案名称集合
     */
    public List<RosteringScheme> selectSchemeNameList();
    /**
     * 查询排班表查询
     * 
     * @param id 排班表查询ID
     * @return 排班表查询
     */
    public Rostering selectRosteringById(String id);
 
    /**
     * 查询排班表查询列表
     * 
     * @param rostering 排班表查询
     * @return 排班表查询集合
     */
    public List<Rostering> selectRosteringList(Rostering rostering);
 
    /**
     *
     * @return
     */
    public List<RosteringCopy> selectList(Rostering rostering);
    /**
     * 新增排班表查询
 
     * @return 结果
     */
    public int insertRostering(Rostering rostering );
    public void saveRostering(List<Rostering> dataItems);
 
    /**
     * 修改排班表查询
     * 
     * @param rostering 排班表查询
     * @return 结果
     */
    public int updateRostering(Rostering rostering);
 
    /**
     * 批量删除排班表查询
     * 
     * @param ids 需要删除的排班表查询ID
     * @return 结果
     */
    public int deleteRosteringByIds(String[] ids);
 
    /**
     * 删除排班表查询信息
     * 
     * @param id 排班表查询ID
     * @return 结果
     */
    public int deleteRosteringById(String id);
 
 
}