package com.ruoyi.http.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
@TableName("tqdianbiao_meter")
|
public class TqdianbiaoMeter {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long meterId;
|
|
/** 电表名称 */
|
private String meterName;
|
|
private String collectorId;
|
|
private String collectorNo;
|
|
private String address;
|
|
private Integer rate;
|
|
private String relayState;
|
|
private String meterType;
|
|
private Integer csq;
|
|
private String description;
|
|
/** 来源 sync-平台同步 manual-手动添加 */
|
private String source;
|
|
private LocalDateTime syncTime;
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime updateTime;
|
|
@TableField(exist = false)
|
private String keyword;
|
}
|