1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.bizmatics.service.vo;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.time.LocalDate;
- import java.util.List;
- /**
- *
- * @author fyc
- * @email yuchuan.fu@chinausky.com
- * @date 2025/9/4
- */
- @Data
- public class TimeSharingElectricityRequestVO {
- /**
- * 站点id
- */
- private Integer siteId;
- /**
- * 设备类型 1:支路 2:分项
- */
- private Integer deviceType;
- /**
- * 开始时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private LocalDate startTime;
- /**
- * 结束时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private LocalDate endTime;
- /**
- * 页数
- */
- private Integer pageNum;
- /**
- * 每页数量
- */
- private Integer pageSize;
- /**
- * 设备编码
- */
- private List<String> deviceCodes;
- }
|