潘志宝
2024-10-31 14cb329f0fec66711e3ddeba7e80db289c7fe8fc
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.data.point.entity;
H 2
3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import lombok.Data;
7
8 import java.io.Serializable;
9
10 /**
11  * 计算点表
12  *
13  * @author PanZhibao
14  * @Description
15  * @createTime 2024年05月11日
16  */
17 @Data
18 @TableName("t_da_math_point")
19 public class DaMathPointEntity implements Serializable {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * id
24      */
25     @TableId(type = IdType.ASSIGN_UUID)
26     private String id;
27
28     /**
29      * 测点ID
30      */
31     private String pointId;
32
33     /**
34      * 计算公式
35      */
36     private String expression;
37 }