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 DongYukun
14  * @Description
15  * @createTime 2024年01月17日 13:19:00
16  */
17 @Data
18 @TableName("t_fxjy_tag")
19 public class FxjyTagEntity implements Serializable {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * 主键
24      */
25     @Schema(description = "主键")
26     @TableId(value = "id", type = IdType.INPUT)
27     private String id;
28
29     /**
30      * 测点类型
31      */
32     private String tagType;
33
34     /**
35      * 测点编码
36      */
37     private String tagCode;
38
39     /**
40      * 测点名称
41      */
42     private String tagName;
43
44     /**
45      * 创建时间
46      */
47     private Date createTime;
48
49     /**
50      * 更新时间
51      */
52     private Date updateTime;
53 }