mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-02 22:10:26 +08:00
9 lines
157 B
Go
9 lines
157 B
Go
package setup
|
|
|
|
type SQLRecordsTable struct {
|
|
TableName string
|
|
UniqueFields []string
|
|
ExceptFields []string
|
|
IgnoreId bool // 是否可以排除ID
|
|
}
|