xiangpei
2025-02-18 91dc0135a3e89e3a54866d184743e305ee54ce26
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;
    }
}