2021与蓝度共同重构项目,服务端
MercuryZ
2022-10-18 ea94079e74182be590b9fff356c97f522d9a7828
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
package com.sandu.ximon.dao.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 
 * @TableName air_equipment_nong_geng
 */
@TableName(value ="air_equipment_nong_geng")
@Data
public class AirEquipmentNongGeng implements Serializable {
    /**
     * 
     */
    @TableId
    private Long id;
 
    /**
     * MAC地址
     */
    private String mac;
 
    /**
     * 设备类型  0常规型气象站  1辐射型气象站  2大气污染物气象站
     */
    private String type;
 
    /**
     * 接入时间
     */
    private LocalDateTime createTime;
 
    @TableField(exist = false)
    private Integer state;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}