contracts/base/res_api_field.go

16 lines
576 B
Go
Raw Normal View History

2023-04-12 16:56:55 +08:00
package base
type ResApiField struct {
2024-01-29 15:07:32 +08:00
Uuid string `db:"uuid"`
2023-04-12 16:56:55 +08:00
ApiUuid string `db:"api_uuid"`
Code string `db:"code"` // 字段名称
CodeResource string `db:"resource"` // 字段所属资源
Alias string `db:"alias"` // 字段别名
IsExpr bool `db:"isExpr"` // 字段名是否为SQL表达式
FieldDataType string `db:"fieldDataType"` // 字段数据类型
UpdatedAt string `db:"updated_at"`
CreatedAt string `db:"created_at"`
}
2023-04-12 19:50:25 +08:00
type GetResApiFields func(apiUuid string) []ResApiField