package com.doumee.dao.web.response.platformReport; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2024/10/25 16:25 
 | 
 */ 
 | 
@Data 
 | 
public class EnergyDataVO { 
 | 
  
 | 
    @ApiModelProperty(value = "时间") 
 | 
    private String timeData; 
 | 
  
 | 
    @ApiModelProperty(value = "能耗") 
 | 
    private BigDecimal energy; 
 | 
  
 | 
} 
 |