11 lines
275 B
Go
11 lines
275 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// UserWorkbench 工作台配置
|
|
type UserWorkbench struct {
|
|
UserId int64 `json:"user_id"`
|
|
ToolKeys string `json:"tool_keys"` // JSON: ["img-compress",...]
|
|
UpdatedAt *gtime.Time `json:"updated_at"`
|
|
}
|