潘志宝
2024-11-29 56dba6294342aa571197298669d04618b4f7258f
提交 | 用户 | 时间
0ed8ac 1 package com.iailab.module.data.point.entity;
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年11月28日
16  */
17 @Data
18 @TableName("t_da_cumulate_point")
19 public class DaCumulatePointEntity 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      */
56dba6 36     private String momentPoint;
0ed8ac 37
38     /**
39      * 累计长度
40      */
41     private Integer length;
42
43     /**
44      * 除数
45      */
46     private Integer divisor;
47 }