TimeSharingElectricityRequestVO.java 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.bizmatics.service.vo;
  2. import lombok.Data;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import java.time.LocalDate;
  5. import java.util.List;
  6. /**
  7. *
  8. * @author fyc
  9. * @email yuchuan.fu@chinausky.com
  10. * @date 2025/9/4
  11. */
  12. @Data
  13. public class TimeSharingElectricityRequestVO {
  14. /**
  15. * 站点id
  16. */
  17. private Integer siteId;
  18. /**
  19. * 设备类型 1:支路 2:分项
  20. */
  21. private Integer deviceType;
  22. /**
  23. * 开始时间
  24. */
  25. @DateTimeFormat(pattern = "yyyy-MM-dd")
  26. private LocalDate startTime;
  27. /**
  28. * 结束时间
  29. */
  30. @DateTimeFormat(pattern = "yyyy-MM-dd")
  31. private LocalDate endTime;
  32. /**
  33. * 页数
  34. */
  35. private Integer pageNum;
  36. /**
  37. * 每页数量
  38. */
  39. private Integer pageSize;
  40. /**
  41. * 设备编码
  42. */
  43. private List<String> deviceCodes;
  44. }