Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dictionary ¶
type Dictionary struct { //TableName gobatis.TableName `dictionary` Id int `column:"id" json:"id"` UserId int `column:"user_id" json:"userId"` ScopeSpaceId int `column:"scopespace_id" json:"scopeSpaceId"` DictKey string `column:"dict_key" json:"dictKey"` DictValue string `column:"dict_value" json:"dictValue"` Version string `column:"version" json:"version"` State string `column:"state" json:"state"` CreatedAt time.Time `column:"created_at" json:"createdAt"` UpdatedAt time.Time `column:"updated_at" json:"updatedAt"` }
type PageUserParam ¶
type Permission ¶
type Permission struct { //TableName gobatis.TableName `permission` Id int `column:"id"` UserId int `column:"user_id"` DataType int `column:"data_type"` DataId int `column:"data_id"` Note string `column:"note"` State string `column:"state"` CreatedAt time.Time `column:"created_at"` UpdatedAt time.Time `column:"updated_at"` }
type ScopeSpace ¶
type ScopeSpace struct { //TableName gobatis.TableName `scopespace` Id int `column:"id" json:"id"` UserId int `column:"user_id" json:"userId"` Name string `column:"name" json:"name"` Note string `column:"note" json:"note"` State string `column:"state" json:"state"` CreatedAt time.Time `column:"created_at" json:"createdAt"` UpdatedAt time.Time `column:"updated_at" json:"updatedAt"` }
type User ¶
type User struct { //TableName gobatis.TableName `user` Id int `column:"id"` Name string `column:"name"` Password string `column:"password"` Salt string `column:"salt"` Identity int `column:"identity"` State string `column:"state"` UserSession string `column:"user_session"` CreatedAt time.Time `column:"created_at"` UpdatedAt time.Time `column:"updated_at"` }
Click to show internal directories.
Click to hide internal directories.