mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-08-02 05:20:15 +08:00
将字段默认值选项改为后端传递。
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
package ai.chat2db.spi.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class DefaultValue {
|
||||
|
||||
private String defaultValue;
|
||||
|
||||
}
|
@ -19,4 +19,6 @@ public class TableMeta {
|
||||
|
||||
|
||||
private List<IndexType> indexTypes;
|
||||
|
||||
private List<DefaultValue> defaultValues;
|
||||
}
|
||||
|
Reference in New Issue
Block a user