package com.artfess.rescue.open.vo;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @Author: wsf
 * @Description: 呼叫座席统计VO
 * @DateTime: 2025/4/27 14:20
 **/
@Data
public class CallAgentsCountVO {

    @ApiModelProperty(value = "突发事件（件）")
    private Integer suddenEvent = 0;

    @ApiModelProperty(value = "公众服务（件）")
    private Integer publicService = 0;

    @ApiModelProperty(value = "施工（件）")
    private Integer construction = 0;

    @ApiModelProperty(value = "通知（件）")
    private Integer notification = 0;

    @ApiModelProperty(value = "其他（件）")
    private Integer other = 0;

}
