新增查询门店会员

This commit is contained in:
chy
2025-07-04 16:47:45 +08:00
parent f0b13086dd
commit 7f23097976
39 changed files with 844 additions and 176 deletions

View 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 //
}