22 lines
690 B
Go
22 lines
690 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"
|
|
)
|
|
|
|
// 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 //
|
|
}
|