git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
16 lines
621 B
Go
16 lines
621 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type PartnerStore struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
Name string `orm:"name" json:"name"`
|
|
Type int `orm:"type" json:"type"`
|
|
Lat float64 `orm:"lat" json:"lat"`
|
|
Lng float64 `orm:"lng" json:"lng"`
|
|
Address string `orm:"address" json:"address"`
|
|
CommissionPolicy string `orm:"commission_policy" json:"commission_policy"`
|
|
Status int `orm:"status" json:"status"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
}
|