mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-11 12:07:42 +00:00
(improvement)(semantic) optimized llms2qlParser code and support prior exts to llm (#300)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.tencent.supersonic.common.pojo.enums;
|
||||
|
||||
public enum DataFormatTypeEnum {
|
||||
|
||||
PERCENT("percent"),
|
||||
|
||||
DECIMAL("decimal");
|
||||
|
||||
private String name;
|
||||
|
||||
DataFormatTypeEnum(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user