zss
5 小时以前 a6c42f7838229c890df3215362875220afdd7ff4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.energy.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel("能耗成本趋势")
public class EnergyAccountTypeDto {
 
    //"办公/生产"
    @ApiModelProperty("能耗场景")
    private String energyAccountType;
 
    @ApiModelProperty("能耗成本")
    private BigDecimal energyAccount;
}