22 lines
747 B
Go
22 lines
747 B
Go
// =================================================================================
|
|
// 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 // 软删除时间戳
|
|
}
|