MrShi
2026-01-13 3a154bdb0a5aaa2c0ac3eac95a6ba747068bd454
server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/vo/TelecomLineCountVO.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,32 @@
package com.doumee.dao.business.vo;
import com.doumee.service.business.third.model.LoginUserModel;
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 TelecomLineCountVO{
    @ApiModelProperty(value = "主线路数", example = "1")
    private Integer categoryNum;
    @ApiModelProperty(value = "线路数量", example = "1")
    private Integer lineNum;
    @ApiModelProperty(value = "客户数量", example = "1")
    private Integer customerNum;
    @ApiModelProperty(value = "线路数据", example = "1")
    private List<TelecomCategoryDataVO> telecomCategoryDataVOList;
}