新增查询门店会员
This commit is contained in:
21
internal/model/do/store_areas.go
Normal file
21
internal/model/do/store_areas.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"
|
||||
)
|
||||
|
||||
// StoreAreas is the golang structure of table store_areas for DAO operations like Where/Data.
|
||||
type StoreAreas struct {
|
||||
g.Meta `orm:"table:store_areas, do:true"`
|
||||
Id interface{} // 区域ID
|
||||
StoreId interface{} // 所属门店ID
|
||||
AreaName interface{} // 区域名称
|
||||
CreatedAt *gtime.Time //
|
||||
UpdatedAt *gtime.Time //
|
||||
DeletedAt *gtime.Time //
|
||||
}
|
||||
Reference in New Issue
Block a user