提交 | 用户 | 时间 | ||
b425df | 1 | package com.iailab.module.model.common.enums; |
潘 | 2 | |
3 | import lombok.AllArgsConstructor; | |
4 | import lombok.Getter; | |
5 | ||
6 | /** | |
7 | * @author PanZhibao | |
8 | * @Description | |
9 | * @createTime 2023年05月03日 19:10:00 | |
10 | */ | |
11 | @Getter | |
12 | @AllArgsConstructor | |
13 | public enum DataTypeEnum { | |
14 | ||
15 | INT("int"), | |
16 | ||
17 | FLOAT("float"), | |
18 | ||
19 | BOOLEAN("boolean"); | |
20 | ||
21 | private String code; | |
22 | } |