Jay
2024-10-08 79914dabac38d83676ea16ff65da8d941a099285
提交 | 用户 | 时间
68413a 1 package com.iailab.module.data.common.enums;
J 2
3 import lombok.AllArgsConstructor;
4 import lombok.Getter;
5
6 /**
218503 7  * 指标类型
8  *
68413a 9  * @author PanZhibao
J 10  * @Description
11  * @createTime 2023年05月03日 19:10:00
12  */
13 @Getter
14 @AllArgsConstructor
15 public enum ItemTypeEnum {
16
17     ATOM("ATOM"),
18
19     DER("DER"),
20
21     CAL("CAL");
22
23     private String code;
24 }