zxl
2025-04-02 01c29b4b6cfb1a3223cf9e322f33ead42093e77c
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
package com.ycl.domain.json;
 
import com.ycl.common.enums.business.HandlerTypeEnum;
import com.ycl.common.enums.business.TeamWorkStatusEnum;
import lombok.Data;
 
import java.util.List;
 
/**
 * 协同办理数据
 *
 * @author:xp
 * @date:2025/2/18 14:55
 */
@Data
public class TeamWorkData {
 
    /**
     * 协同人类型
     */
    private HandlerTypeEnum handlerType;
 
    /**
     * 协同人id
     */
    private List<Long> handlerIds;
 
    /**
     * 状态
     */
    private TeamWorkStatusEnum status;
 
    public TeamWorkData(HandlerTypeEnum handlerType, List<Long> handlerIds, TeamWorkStatusEnum status) {
        this.handlerType = handlerType;
        this.handlerIds = handlerIds;
        this.status = status;
    }
}