Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = sqlx.ErrNotFound
Functions ¶
This section is empty.
Types ¶
type ManageUser ¶
type ManageUser struct { Id uint64 `db:"id"` CreateTime time.Time `db:"create_time"` UpdateTime time.Time `db:"update_time"` CreateBy sql.NullInt64 `db:"create_by"` UpdateBy sql.NullInt64 `db:"update_by"` Username string `db:"username"` Password string `db:"password"` Nickname string `db:"nickname"` Gender string `db:"gender"` Phone sql.NullString `db:"phone"` Status string `db:"status"` Email sql.NullString `db:"email"` }
type ManageUserModel ¶
type ManageUserModel interface {
// contains filtered or unexported methods
}
ManageUserModel is an interface to be customized, add more methods here, and implement the added methods in customManageUserModel.
func NewManageUserModel ¶
NewManageUserModel returns a model for the database table.
Click to show internal directories.
Click to hide internal directories.