Commit 8a676f89 authored by tangwei's avatar tangwei

修改实体

parent 1344d134
......@@ -2,7 +2,6 @@ package com.yeejoin.amos.boot.module.hygf.api.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yeejoin.amos.boot.biz.common.entity.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
......@@ -14,72 +13,72 @@ import java.util.Date;
* @author system_generator
* @date 2023-09-19
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("td_hygf_jp_inverter_warn")
public class TdHygfJpInverterWar {
@Data
@Accessors(chain = true)
@TableName("td_hygf_jp_inverter_warn")
public class TdHygfJpInverterWarn {
private static final long serialVersionUID = 1L;
/**
* sn编码
*/
@TableField("sn_code")
@TableField("sn_code")
private String snCode;
/**
* 内容
*/
@TableField("content")
@TableField("content")
private String content;
/**
* 等级
*/
@TableField("level")
@TableField("level")
private String level;
/**
* 时长
*/
@TableField("time_long")
@TableField("time_long")
private Long timeLong;
/**
* 起始时间
*/
@TableField("start_time")
@TableField("start_time")
private Date startTime;
/**
* 恢复时间
*/
@TableField("recover_time")
@TableField("recover_time")
private Date recoverTime;
/**
* 处理方法
*/
@TableField("treatment")
@TableField("treatment")
private String treatment;
/**
* 逆变器id
*/
@TableField("inverter_id")
@TableField("inverter_id")
private Long inverterId;
/**
* 第三方电站id
*/
@TableField("third_station_id")
@TableField("third_station_id")
private String thirdStationId;
/**
* 第三方厂商标识
*/
@TableField("third_code")
@TableField("third_code")
private String thirdCode;
}
}
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