mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-06-06 06:39:28 +08:00
提交遗漏的类
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package org.example.pojo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @Date 2023/10/12
|
||||
* @Author xiaochun
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@TableName("gpt_key")
|
||||
public class GPTKey {
|
||||
private String key;
|
||||
|
||||
private String url;
|
||||
|
||||
private String model;
|
||||
}
|
||||
Reference in New Issue
Block a user