(improvement)(Headless) Improve model list performance (#880)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2024-04-03 18:54:48 +08:00
committed by GitHub
parent 6996c4c12e
commit 12c06c8ebe
16 changed files with 83 additions and 53 deletions

View File

@@ -0,0 +1,18 @@
package com.tencent.supersonic.common.pojo.enums;
public enum PublishEnum {
UN_PUBLISHED(0),
PUBLISHED(1);
private Integer code;
PublishEnum(Integer code) {
this.code = code;
}
public Integer getCode() {
return code;
}
}