zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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.shlanbao.tzsc.pms.sch.calendar.service;
 
import java.util.List;
import java.util.Map;
 
import com.shlanbao.tzsc.base.mapping.SchCalendar;
import com.shlanbao.tzsc.pms.sch.calendar.beans.CalendarBean;
 
 
/**
 *  排班
 * @author Leejean
 * @create 2014年11月25日下午1:19:28
 */
public interface CalendarServiceI {
    /**
     * 查询当月排班
     * @author Leejean
     * @create 2014年11月26日下午1:10:08
     * @param date 月
     * @param workshop 车间
     * @return
     * @throws Exception
     */
    public List<CalendarBean> getCurMonthCalendars(String date,String workshop) throws Exception;
 
    /**
     * 更新选择日期的排班
     * @param param
     */
    void updateSelectDate(Map<String, String> param);
 
    List<SchCalendar> getNowCalendars();
}