package com.iailab.module.ansteel.power.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 峰谷平累计量计算
|
*
|
* @author DongYukun
|
* @Description
|
* @createTime 2025年5月5日
|
*/
|
@Data
|
@TableName("t_peak_valley_flat")
|
public class PeakValleyFlatEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 名称
|
*/
|
private String name;
|
/**
|
* 类型(peak/vallay/flat)
|
*/
|
private String type;
|
/**
|
* 下发测点编码
|
*/
|
private String pointNo;
|
/**
|
* 下发测点编码
|
*/
|
private String pointNoMonth;
|
/**
|
* 功率测点编码
|
*/
|
private String powerNo;
|
/**
|
* 开始时间
|
*/
|
private String startTime;
|
/**
|
* 结束时间
|
*/
|
private String endTime;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
}
|