提交 | 用户 | 时间
|
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 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年05月12日 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@TableName("t_da_sequence_num") |
|
17 |
public class DaSequenceNumEntity implements Serializable { |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
@TableId(type = IdType.ASSIGN_UUID) |
|
21 |
private String id; |
|
22 |
|
|
23 |
private String code; |
|
24 |
|
|
25 |
private String name; |
|
26 |
|
|
27 |
private Integer sequenceNum; |
|
28 |
|
|
29 |
private String prefix; |
|
30 |
} |