| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | |
| | | } |