LampPoleCountVO.java 295 B

123456789101112131415
  1. package com.welampiot.vo;
  2. import lombok.Data;
  3. import java.util.List;
  4. @Data
  5. public class LampPoleCountVO {
  6. private Integer id;
  7. private List sectionList; // 路段筛选
  8. private String name;
  9. private String number;
  10. private Integer sectionId;
  11. private String createTime;
  12. }