21 changed files with 500 additions and 3 deletions
-
15api/live/live.go
-
22api/live/v1/live.go
-
3go.mod
-
4go.sum
-
5internal/cmd/cmd.go
-
5internal/controller/live/live.go
-
15internal/controller/live/live_new.go
-
15internal/controller/live/live_v1_get_live.go
-
27internal/dao/go_live_reservations.go
-
27internal/dao/go_lives.go
-
27internal/dao/go_users.go
-
77internal/dao/internal/go_live_reservations.go
-
81internal/dao/internal/go_lives.go
-
79internal/dao/internal/go_users.go
-
17internal/model/do/go_live_reservations.go
-
20internal/model/do/go_lives.go
-
18internal/model/do/go_users.go
-
12internal/model/entity/go_live_reservations.go
-
19internal/model/entity/go_lives.go
-
13internal/model/entity/go_users.go
-
2main.go
@ -0,0 +1,15 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package live |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
|
||||
|
"practice_Go/api/live/v1" |
||||
|
) |
||||
|
|
||||
|
type ILiveV1 interface { |
||||
|
GetLive(ctx context.Context, req *v1.GetLiveReq) (res *v1.GetLiveRes, err error) |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
package v1 |
||||
|
|
||||
|
import ( |
||||
|
"practice_Go/internal/model/entity" |
||||
|
|
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
) |
||||
|
|
||||
|
type Live struct { |
||||
|
entity.GoLives |
||||
|
status int |
||||
|
yuyue int |
||||
|
} |
||||
|
|
||||
|
type GetLiveReq struct { |
||||
|
g.Meta `path:"/live" method:"get" tags:"Live" summary:"获取直播列表"` |
||||
|
UserId int `v:"required|min:90000000|max:99999999#用户ID不能为空|用户ID不能小于90000000|用户ID不能大于99999999" dc:"用户ID"` |
||||
|
} |
||||
|
|
||||
|
type GetLiveRes struct { |
||||
|
List []*Live `json:"liveList" dc:"直播列表"` |
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
// =================================================================================
|
||||
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package live |
@ -0,0 +1,15 @@ |
|||||
|
// =================================================================================
|
||||
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package live |
||||
|
|
||||
|
import ( |
||||
|
"practice_Go/api/live" |
||||
|
) |
||||
|
|
||||
|
type ControllerV1 struct{} |
||||
|
|
||||
|
func NewV1() live.ILiveV1 { |
||||
|
return &ControllerV1{} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
package live |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
|
||||
|
"practice_Go/api/live/v1" |
||||
|
"practice_Go/internal/dao" |
||||
|
"practice_Go/internal/model/entity" |
||||
|
) |
||||
|
|
||||
|
func (c *ControllerV1) GetLive(ctx context.Context, req *v1.GetLiveReq) (res *v1.GetLiveRes, err error) { |
||||
|
res = &v1.GetLiveRes{} |
||||
|
err = dao.GoLives.Ctx(ctx).With(entity.GoUsers{}).OrderAsc("start_time").Scan(&res.List) |
||||
|
return |
||||
|
} |
@ -0,0 +1,27 @@ |
|||||
|
// =================================================================================
|
||||
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package dao |
||||
|
|
||||
|
import ( |
||||
|
"practice_Go/internal/dao/internal" |
||||
|
) |
||||
|
|
||||
|
// internalGoLiveReservationsDao is internal type for wrapping internal DAO implements.
|
||||
|
type internalGoLiveReservationsDao = *internal.GoLiveReservationsDao |
||||
|
|
||||
|
// goLiveReservationsDao is the data access object for table go_live_reservations.
|
||||
|
// You can define custom methods on it to extend its functionality as you wish.
|
||||
|
type goLiveReservationsDao struct { |
||||
|
internalGoLiveReservationsDao |
||||
|
} |
||||
|
|
||||
|
var ( |
||||
|
// GoLiveReservations is globally public accessible object for table go_live_reservations operations.
|
||||
|
GoLiveReservations = goLiveReservationsDao{ |
||||
|
internal.NewGoLiveReservationsDao(), |
||||
|
} |
||||
|
) |
||||
|
|
||||
|
// Fill with you ideas below.
|
@ -0,0 +1,27 @@ |
|||||
|
// =================================================================================
|
||||
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package dao |
||||
|
|
||||
|
import ( |
||||
|
"practice_Go/internal/dao/internal" |
||||
|
) |
||||
|
|
||||
|
// internalGoLivesDao is internal type for wrapping internal DAO implements.
|
||||
|
type internalGoLivesDao = *internal.GoLivesDao |
||||
|
|
||||
|
// goLivesDao is the data access object for table go_lives.
|
||||
|
// You can define custom methods on it to extend its functionality as you wish.
|
||||
|
type goLivesDao struct { |
||||
|
internalGoLivesDao |
||||
|
} |
||||
|
|
||||
|
var ( |
||||
|
// GoLives is globally public accessible object for table go_lives operations.
|
||||
|
GoLives = goLivesDao{ |
||||
|
internal.NewGoLivesDao(), |
||||
|
} |
||||
|
) |
||||
|
|
||||
|
// Fill with you ideas below.
|
@ -0,0 +1,27 @@ |
|||||
|
// =================================================================================
|
||||
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package dao |
||||
|
|
||||
|
import ( |
||||
|
"practice_Go/internal/dao/internal" |
||||
|
) |
||||
|
|
||||
|
// internalGoUsersDao is internal type for wrapping internal DAO implements.
|
||||
|
type internalGoUsersDao = *internal.GoUsersDao |
||||
|
|
||||
|
// goUsersDao is the data access object for table go_users.
|
||||
|
// You can define custom methods on it to extend its functionality as you wish.
|
||||
|
type goUsersDao struct { |
||||
|
internalGoUsersDao |
||||
|
} |
||||
|
|
||||
|
var ( |
||||
|
// GoUsers is globally public accessible object for table go_users operations.
|
||||
|
GoUsers = goUsersDao{ |
||||
|
internal.NewGoUsersDao(), |
||||
|
} |
||||
|
) |
||||
|
|
||||
|
// Fill with you ideas below.
|
@ -0,0 +1,77 @@ |
|||||
|
// ==========================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
package internal |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
|
||||
|
"github.com/gogf/gf/v2/database/gdb" |
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
) |
||||
|
|
||||
|
// GoLiveReservationsDao is the data access object for table go_live_reservations.
|
||||
|
type GoLiveReservationsDao struct { |
||||
|
table string // table is the underlying table name of the DAO.
|
||||
|
group string // group is the database configuration group name of current DAO.
|
||||
|
columns GoLiveReservationsColumns // columns contains all the column names of Table for convenient usage.
|
||||
|
} |
||||
|
|
||||
|
// GoLiveReservationsColumns defines and stores column names for table go_live_reservations.
|
||||
|
type GoLiveReservationsColumns struct { |
||||
|
Id string // 直播预约关系唯一ID,自增
|
||||
|
UserId string // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
||||
|
LiveId string // 关联的直播ID,指向go_lives表的id,不能为空
|
||||
|
} |
||||
|
|
||||
|
// goLiveReservationsColumns holds the columns for table go_live_reservations.
|
||||
|
var goLiveReservationsColumns = GoLiveReservationsColumns{ |
||||
|
Id: "id", |
||||
|
UserId: "user_id", |
||||
|
LiveId: "live_id", |
||||
|
} |
||||
|
|
||||
|
// NewGoLiveReservationsDao creates and returns a new DAO object for table data access.
|
||||
|
func NewGoLiveReservationsDao() *GoLiveReservationsDao { |
||||
|
return &GoLiveReservationsDao{ |
||||
|
group: "default", |
||||
|
table: "go_live_reservations", |
||||
|
columns: goLiveReservationsColumns, |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// DB retrieves and returns the underlying raw database management object of current DAO.
|
||||
|
func (dao *GoLiveReservationsDao) DB() gdb.DB { |
||||
|
return g.DB(dao.group) |
||||
|
} |
||||
|
|
||||
|
// Table returns the table name of current dao.
|
||||
|
func (dao *GoLiveReservationsDao) Table() string { |
||||
|
return dao.table |
||||
|
} |
||||
|
|
||||
|
// Columns returns all column names of current dao.
|
||||
|
func (dao *GoLiveReservationsDao) Columns() GoLiveReservationsColumns { |
||||
|
return dao.columns |
||||
|
} |
||||
|
|
||||
|
// Group returns the configuration group name of database of current dao.
|
||||
|
func (dao *GoLiveReservationsDao) Group() string { |
||||
|
return dao.group |
||||
|
} |
||||
|
|
||||
|
// Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.
|
||||
|
func (dao *GoLiveReservationsDao) Ctx(ctx context.Context) *gdb.Model { |
||||
|
return dao.DB().Model(dao.table).Safe().Ctx(ctx) |
||||
|
} |
||||
|
|
||||
|
// Transaction wraps the transaction logic using function f.
|
||||
|
// It rollbacks the transaction and returns the error from function f if it returns non-nil error.
|
||||
|
// It commits the transaction and returns nil if function f returns nil.
|
||||
|
//
|
||||
|
// Note that, you should not Commit or Rollback the transaction in function f
|
||||
|
// as it is automatically handled by this function.
|
||||
|
func (dao *GoLiveReservationsDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) { |
||||
|
return dao.Ctx(ctx).Transaction(ctx, f) |
||||
|
} |
@ -0,0 +1,81 @@ |
|||||
|
// ==========================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
package internal |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
|
||||
|
"github.com/gogf/gf/v2/database/gdb" |
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
) |
||||
|
|
||||
|
// GoLivesDao is the data access object for table go_lives.
|
||||
|
type GoLivesDao struct { |
||||
|
table string // table is the underlying table name of the DAO.
|
||||
|
group string // group is the database configuration group name of current DAO.
|
||||
|
columns GoLivesColumns // columns contains all the column names of Table for convenient usage.
|
||||
|
} |
||||
|
|
||||
|
// GoLivesColumns defines and stores column names for table go_lives.
|
||||
|
type GoLivesColumns struct { |
||||
|
Id string // 直播唯一ID,自增
|
||||
|
Cover string // 直播封面路径或相关标识,可为空
|
||||
|
UserId string // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
||||
|
LiveName string // 直播名称,最大长度255字符,不能为空
|
||||
|
StartTime string // 直播开始时间,不能为空
|
||||
|
} |
||||
|
|
||||
|
// goLivesColumns holds the columns for table go_lives.
|
||||
|
var goLivesColumns = GoLivesColumns{ |
||||
|
Id: "id", |
||||
|
Cover: "cover", |
||||
|
UserId: "user_id", |
||||
|
LiveName: "live_name", |
||||
|
StartTime: "start_time", |
||||
|
} |
||||
|
|
||||
|
// NewGoLivesDao creates and returns a new DAO object for table data access.
|
||||
|
func NewGoLivesDao() *GoLivesDao { |
||||
|
return &GoLivesDao{ |
||||
|
group: "default", |
||||
|
table: "go_lives", |
||||
|
columns: goLivesColumns, |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// DB retrieves and returns the underlying raw database management object of current DAO.
|
||||
|
func (dao *GoLivesDao) DB() gdb.DB { |
||||
|
return g.DB(dao.group) |
||||
|
} |
||||
|
|
||||
|
// Table returns the table name of current dao.
|
||||
|
func (dao *GoLivesDao) Table() string { |
||||
|
return dao.table |
||||
|
} |
||||
|
|
||||
|
// Columns returns all column names of current dao.
|
||||
|
func (dao *GoLivesDao) Columns() GoLivesColumns { |
||||
|
return dao.columns |
||||
|
} |
||||
|
|
||||
|
// Group returns the configuration group name of database of current dao.
|
||||
|
func (dao *GoLivesDao) Group() string { |
||||
|
return dao.group |
||||
|
} |
||||
|
|
||||
|
// Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.
|
||||
|
func (dao *GoLivesDao) Ctx(ctx context.Context) *gdb.Model { |
||||
|
return dao.DB().Model(dao.table).Safe().Ctx(ctx) |
||||
|
} |
||||
|
|
||||
|
// Transaction wraps the transaction logic using function f.
|
||||
|
// It rollbacks the transaction and returns the error from function f if it returns non-nil error.
|
||||
|
// It commits the transaction and returns nil if function f returns nil.
|
||||
|
//
|
||||
|
// Note that, you should not Commit or Rollback the transaction in function f
|
||||
|
// as it is automatically handled by this function.
|
||||
|
func (dao *GoLivesDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) { |
||||
|
return dao.Ctx(ctx).Transaction(ctx, f) |
||||
|
} |
@ -0,0 +1,79 @@ |
|||||
|
// ==========================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
package internal |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
|
||||
|
"github.com/gogf/gf/v2/database/gdb" |
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
) |
||||
|
|
||||
|
// GoUsersDao is the data access object for table go_users.
|
||||
|
type GoUsersDao struct { |
||||
|
table string // table is the underlying table name of the DAO.
|
||||
|
group string // group is the database configuration group name of current DAO.
|
||||
|
columns GoUsersColumns // columns contains all the column names of Table for convenient usage.
|
||||
|
} |
||||
|
|
||||
|
// GoUsersColumns defines and stores column names for table go_users.
|
||||
|
type GoUsersColumns struct { |
||||
|
Id string // 用户唯一ID,自增,长度为8位整数
|
||||
|
Username string // 用户名,最大长度255字符,不能为空
|
||||
|
Avatar string // 用户头像路径或相关标识,可为空
|
||||
|
Password string // 用户登录密码,最大长度255字符,不能为空
|
||||
|
} |
||||
|
|
||||
|
// goUsersColumns holds the columns for table go_users.
|
||||
|
var goUsersColumns = GoUsersColumns{ |
||||
|
Id: "id", |
||||
|
Username: "username", |
||||
|
Avatar: "avatar", |
||||
|
Password: "password", |
||||
|
} |
||||
|
|
||||
|
// NewGoUsersDao creates and returns a new DAO object for table data access.
|
||||
|
func NewGoUsersDao() *GoUsersDao { |
||||
|
return &GoUsersDao{ |
||||
|
group: "default", |
||||
|
table: "go_users", |
||||
|
columns: goUsersColumns, |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// DB retrieves and returns the underlying raw database management object of current DAO.
|
||||
|
func (dao *GoUsersDao) DB() gdb.DB { |
||||
|
return g.DB(dao.group) |
||||
|
} |
||||
|
|
||||
|
// Table returns the table name of current dao.
|
||||
|
func (dao *GoUsersDao) Table() string { |
||||
|
return dao.table |
||||
|
} |
||||
|
|
||||
|
// Columns returns all column names of current dao.
|
||||
|
func (dao *GoUsersDao) Columns() GoUsersColumns { |
||||
|
return dao.columns |
||||
|
} |
||||
|
|
||||
|
// Group returns the configuration group name of database of current dao.
|
||||
|
func (dao *GoUsersDao) Group() string { |
||||
|
return dao.group |
||||
|
} |
||||
|
|
||||
|
// Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.
|
||||
|
func (dao *GoUsersDao) Ctx(ctx context.Context) *gdb.Model { |
||||
|
return dao.DB().Model(dao.table).Safe().Ctx(ctx) |
||||
|
} |
||||
|
|
||||
|
// Transaction wraps the transaction logic using function f.
|
||||
|
// It rollbacks the transaction and returns the error from function f if it returns non-nil error.
|
||||
|
// It commits the transaction and returns nil if function f returns nil.
|
||||
|
//
|
||||
|
// Note that, you should not Commit or Rollback the transaction in function f
|
||||
|
// as it is automatically handled by this function.
|
||||
|
func (dao *GoUsersDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) { |
||||
|
return dao.Ctx(ctx).Transaction(ctx, f) |
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package do |
||||
|
|
||||
|
import ( |
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
) |
||||
|
|
||||
|
// GoLiveReservations is the golang structure of table go_live_reservations for DAO operations like Where/Data.
|
||||
|
type GoLiveReservations struct { |
||||
|
g.Meta `orm:"table:go_live_reservations, do:true"` |
||||
|
Id interface{} // 直播预约关系唯一ID,自增
|
||||
|
UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
||||
|
LiveId interface{} // 关联的直播ID,指向go_lives表的id,不能为空
|
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package do |
||||
|
|
||||
|
import ( |
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
"github.com/gogf/gf/v2/os/gtime" |
||||
|
) |
||||
|
|
||||
|
// GoLives is the golang structure of table go_lives for DAO operations like Where/Data.
|
||||
|
type GoLives struct { |
||||
|
g.Meta `orm:"table:go_lives, do:true"` |
||||
|
Id interface{} // 直播唯一ID,自增
|
||||
|
Cover interface{} // 直播封面路径或相关标识,可为空
|
||||
|
UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
||||
|
LiveName interface{} // 直播名称,最大长度255字符,不能为空
|
||||
|
StartTime *gtime.Time // 直播开始时间,不能为空
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package do |
||||
|
|
||||
|
import ( |
||||
|
"github.com/gogf/gf/v2/frame/g" |
||||
|
) |
||||
|
|
||||
|
// GoUsers is the golang structure of table go_users for DAO operations like Where/Data.
|
||||
|
type GoUsers struct { |
||||
|
g.Meta `orm:"table:go_users, do:true"` |
||||
|
Id interface{} // 用户唯一ID,自增,长度为8位整数
|
||||
|
Username interface{} // 用户名,最大长度255字符,不能为空
|
||||
|
Avatar interface{} // 用户头像路径或相关标识,可为空
|
||||
|
Password interface{} // 用户登录密码,最大长度255字符,不能为空
|
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package entity |
||||
|
|
||||
|
// GoLiveReservations is the golang structure for table go_live_reservations.
|
||||
|
type GoLiveReservations struct { |
||||
|
Id int `json:"id" orm:"id" description:"直播预约关系唯一ID,自增"` // 直播预约关系唯一ID,自增
|
||||
|
UserId int `json:"userId" orm:"user_id" description:"关联的用户ID,指向go_users表的id,长度为8位整数,不能为空"` // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
||||
|
LiveId int `json:"liveId" orm:"live_id" description:"关联的直播ID,指向go_lives表的id,不能为空"` // 关联的直播ID,指向go_lives表的id,不能为空
|
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package entity |
||||
|
|
||||
|
import ( |
||||
|
"github.com/gogf/gf/v2/os/gtime" |
||||
|
) |
||||
|
|
||||
|
// GoLives is the golang structure for table go_lives.
|
||||
|
type GoLives struct { |
||||
|
Id int `json:"id" orm:"id" description:"直播唯一ID,自增"` // 直播唯一ID,自增
|
||||
|
Cover string `json:"cover" orm:"cover" description:"直播封面路径或相关标识,可为空"` // 直播封面路径或相关标识,可为空
|
||||
|
UserId int `json:"userId" orm:"user_id" description:"关联的用户ID,指向go_users表的id,长度为8位整数,不能为空"` // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
||||
|
User *GoUsers `json:"user" orm:"with:id=user_id" description:"关联的用户信息"` // 关联的用户信息
|
||||
|
LiveName string `json:"liveName" orm:"live_name" description:"直播名称,最大长度255字符,不能为空"` // 直播名称,最大长度255字符,不能为空
|
||||
|
StartTime *gtime.Time `json:"startTime" orm:"start_time" description:"直播开始时间,不能为空"` // 直播开始时间,不能为空
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
// =================================================================================
|
||||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
|
// =================================================================================
|
||||
|
|
||||
|
package entity |
||||
|
|
||||
|
// GoUsers is the golang structure for table go_users.
|
||||
|
type GoUsers struct { |
||||
|
Id int `json:"id" orm:"id" description:"用户唯一ID,自增,长度为8位整数"` // 用户唯一ID,自增,长度为8位整数
|
||||
|
Username string `json:"username" orm:"username" description:"用户名,最大长度255字符,不能为空"` // 用户名,最大长度255字符,不能为空
|
||||
|
Avatar string `json:"avatar" orm:"avatar" description:"用户头像路径或相关标识,可为空"` // 用户头像路径或相关标识,可为空
|
||||
|
Password string `json:"password" orm:"password" description:"用户登录密码,最大长度255字符,不能为空"` // 用户登录密码,最大长度255字符,不能为空
|
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue