liriming
2024-08-27 c7f70933adf89a163d0049c907492a6df60cb45f
提交 | 用户 | 时间
c7f709 1 package com.iailab.module.data.channel.http.entity;
a6de49 2
H 3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import io.swagger.v3.oas.annotations.media.Schema;
7 import lombok.Data;
8
9 import java.io.Serializable;
10 import java.util.Date;
11
12 /**
13  * @author PanZhibao
14  * @Description
15  * @createTime 2023年12月18日 16:53:00
16  */
17 @Data
18 @TableName("t_ele_low_tag")
19 public class EleLowTagEntity implements Serializable {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * ID
24      */
25     @Schema(description = "ID")
26     @TableId(value = "id", type = IdType.INPUT)
27     private String id;
28
29     /**
30      * 位置
31      */
32     private String location;
33
34     /**
35      * 所在柜号
36      */
37     private String boxNum;
38
39     /**
40      * 开关位置
41      */
42     private String switchLocation;
43
44     /**
45      * 测点名称
46      */
47     private String tagName;
48
49     /**
50      * 创建时间
51      */
52     private Date createTime;
53
54     /**
55      * 更新时间
56      */
57     private Date updateTime;
58 }