Jay
2024-09-24 68413a1b74697d73d3b2147d8ece68915c900382
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.iailab.module.data.common.enums;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年05月03日 19:10:00
 */
@Getter
@AllArgsConstructor
public enum ItemTypeEnum {
 
    ATOM("ATOM"),
 
    DER("DER"),
 
    CAL("CAL");
 
    private String code;
}