rk
7 天以前 42a8adae751bf130c17d0a361638ca10a39de81e
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
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;
 
}