yuan
3 天以前 1a21433e0babfa7cafc5a4d86609442ec9f150a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
}