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;
|
}
|
}
|