zxl
2025-12-11 ad7cbfd8fd19fcce4345a4907c1f059a34c2869b
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
77
78
79
80
81
82
83
84
package com.ycl.service;
 
import com.ycl.domain.entity.WorkStationSchedule;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.common.base.Result;
import com.ycl.domain.form.WorkStationScheduleForm;
import com.ycl.domain.query.WorkStationScheduleQuery;
import java.util.List;
 
/**
 *  服务类
 *
 * @author zxl
 * @since 2025-12-05
 */
public interface WorkStationScheduleService extends IService<WorkStationSchedule> {
 
    /**
     * 添加
     * @param form
     * @return
     */
    Result add(WorkStationScheduleForm form);
 
    /**
     * 修改
     * @param form
     * @return
     */
    Result update(WorkStationScheduleForm form);
 
    /**
     * 批量删除
     * @param ids
     * @return
     */
    Result remove(List<String> ids);
 
    /**
     * id删除
     * @param id
     * @return
     */
    Result removeById(String id);
 
    /**
     * 分页查询
     * @param query
     * @return
     */
    Result page(WorkStationScheduleQuery query);
 
    /**
     * 查询传入时间月份内每天日程
     * @param query
     * @return
     */
    Result listByDate(WorkStationScheduleQuery query);
    /**
     * 根据id查找
     * @param id
     * @return
     */
    Result detail(Integer id);
 
    /**
     * 列表
     * @return
     */
    Result all();
 
    Result completedAchievements(Integer id);
    /**
     * 获得今成就统计
     * @return
     */
    Result countAchievements();
 
    /**
     * 获得今日任务统计
     * @return
     */
    Result countTodayTask();
}