package com.doumee.dao.business.vo;
|
|
import com.doumee.dao.business.model.JkCustomerNavigation;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* 交控-线路信息表
|
* @author 江蹄蹄
|
* @date 2025/09/28 09:01
|
*/
|
@Data
|
@ApiModel("入园统计 - 电信大屏")
|
public class TelecomInParkDataVO {
|
|
@ApiModelProperty(value = "入园人数统计", example = "1")
|
private Integer inUserNum;
|
|
@ApiModelProperty(value = "入园车辆统计", example = "1")
|
private Integer inCarNum;
|
|
}
|