实现了门店员工、员工角色的接口开发
This commit is contained in:
21
internal/model/do/store_roles.go
Normal file
21
internal/model/do/store_roles.go
Normal file
@ -0,0 +1,21 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// StoreRoles is the golang structure of table store_roles for DAO operations like Where/Data.
|
||||
type StoreRoles struct {
|
||||
g.Meta `orm:"table:store_roles, do:true"`
|
||||
Id interface{} // 门店角色ID
|
||||
StoreId interface{} // 所属门店ID
|
||||
Name interface{} // 门店角色名称
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
DeletedAt *gtime.Time // 软删除时间戳
|
||||
}
|
||||
Reference in New Issue
Block a user