skyouc
5 天以前 273f2e5d3941b0e720e5eabd7dba9cfc042c3267
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
package com.vincent.rsf.server.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.manager.entity.Wave;
import com.vincent.rsf.server.manager.entity.WaveItem;
 
import java.util.List;
import java.util.Map;
 
public interface WaveService extends IService<Wave> {
 
    /**
     * @param
     * @param loginUserId
     * @return
     * @author Ryan
     * @description 波次任务下发
     * @time 2025/4/25 16:24
     */
    R publicTask(Map<String, Object> map, Long loginUserId);
 
    /**
     * @author Ryan
     * @description 预览波次下发任务
     * @param
     * @return
     * @time 2025/4/27 11:08
     */
    List<WaveItem> mergeWavePreview(Long waveId);
 
    /**
    * @author Ryan
    * @description 取消波次,修改订单信息
    * @param
    * @return
    * @time 2025/6/17 10:03
    */
    R cancelWave(List<Long> ids);
}