增加可见范围 enum
This commit is contained in:
parent
c5dd1d50e7
commit
e4dc715458
|
@ -0,0 +1,25 @@
|
|||
package cn.iocoder.yudao.module.ai.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* chat角色 可见范围
|
||||
*
|
||||
* @author fansili
|
||||
* @time 2024/4/24 16:44
|
||||
* @since 1.0
|
||||
*/
|
||||
@AllArgsConstructor
|
||||
@Getter
|
||||
public enum ChatRoleVisibilityEnum {
|
||||
|
||||
PUBLIC("public", "公开"),
|
||||
PRIVATE("private", "私有的"),
|
||||
|
||||
;
|
||||
|
||||
private String type;
|
||||
|
||||
private String name;
|
||||
}
|
Loading…
Reference in New Issue