2023-04-12 16:56:55 +08:00
|
|
|
package base
|
|
|
|
|
|
|
|
type ResConfigure struct {
|
|
|
|
Uuid string `db:"uuid"`
|
|
|
|
ResourceUuid string `db:"resource_uuid"`
|
|
|
|
Key string `db:"key"`
|
|
|
|
Value string `db:"value"`
|
|
|
|
Label string `db:"label"`
|
|
|
|
Type string `db:"type"`
|
|
|
|
IsPrivate bool `db:"isPrivate"`
|
|
|
|
Desc string `db:"desc"`
|
|
|
|
UpdatedAt string `db:"updated_at"`
|
|
|
|
CreatedAt string `db:"created_at"`
|
|
|
|
}
|
2023-04-12 19:50:25 +08:00
|
|
|
|
|
|
|
type GetResConfigures func(uuid string) []ResConfigure
|