Commit 577b5291 authored by 朱晨阳's avatar 朱晨阳

添加实体类

parent a9a8dc1a
package com.yeejoin.amos.boot.module.hygf.api.dto;
import lombok.Data;
/**
* ClassName: PowerStationStatistics
* Package: com.yeejoin.amos.boot.module.hygf.api.dto
* Description: 查询区域公司下电站统计信息
*
* @Author zcy
* @Create 2024/4/19 11:09
* @Version 1.0
*/
@Data
public class PowerStationStatistics {
private String name; // 区域公司/经销商名称
private String code; // 区域公司/经销商code
private Integer powerStationNumber; // 电站总数
private Double totalCapacity; // 装机容量
private Double totalDayGenerate; // 日发电量
private Double totalRatedPower; // 额定功率
private Double totalDayIncome; // 日收益
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment