|
- package md
-
- import (
- "applet/app/db/model"
- )
-
- type Store struct {
- P string `json:"p"`
- Size string `json:"size"`
- Name string `json:"name"`
- }
- type StoreGroup struct {
- model.User `xorm:"extends"`
- model.CommunityTeamStore `xorm:"extends"`
- }
- type StoreSave struct {
- Uid string `json:"uid"`
- AgentCommission string `json:"agent_commission"`
- }
-
- type StoreOrder struct {
- P string `json:"p"`
- Size string `json:"size"`
- Nickname string `json:"nickname"`
- Phone string `json:"phone"`
- StartTime string `json:"start_time"`
- EndTime string `json:"end_time"`
- Oid string `json:"oid"`
- StoreUid string `json:"store_uid"`
- StoreName string `json:"store_name"`
- ConfirmStartTime string `json:"confirm_start_time"`
- ConfirmEndTime string `json:"confirm_end_time"`
- }
- type StoreOrderTotal struct {
- StoreUid string `json:"store_uid"`
- }
- type StoreOrderDetail struct {
- Oid string `json:"oid"`
- }
-
- // Register is 注册 postbody
- type Register struct {
- Mobile string `json:"mobile"`
- Captcha string `json:"captcha"`
- Type string `json:"type"`
- Zone string `json:"zone"`
- PicCode string `json:"pic_code"`
- PicCodeId string `json:"pic_code_id"`
- }
- type CommunityTeamStore struct {
- Lat string `json:"lat" xorm:"default 0.000000 comment('纬度') DECIMAL(30,6)"`
- Lng string `json:"lng" xorm:"default 0.000000 comment('经度') DECIMAL(30,6)"`
- Address string `json:"address" xorm:"comment('详细地址') VARCHAR(255)"`
- WorkState string `json:"work_state" xorm:"default 0 comment('0营业中 1休息中') INT(1)"`
- Name string `json:"name" xorm:"VARCHAR(255)"`
- Province string `json:"province" xorm:"comment('省级的名称') VARCHAR(255)"`
- City string `json:"city" xorm:"comment('市级的名称') VARCHAR(255)"`
- District string `json:"district" xorm:"comment('县,区名称') VARCHAR(255)"`
- Timer string `json:"timer" xorm:"comment('') VARCHAR(255)"`
- Phone string `json:"phone" xorm:"comment('') VARCHAR(255)"`
- Logo string `json:"logo" xorm:"comment('') VARCHAR(255)"`
- ProvinceId string `json:"province_id" xorm:"comment('省级的名称') INT(11)"`
- CityId string `json:"city_id" xorm:"comment('市级的名称') INT(11)"`
- DistrictId string `json:"district_id" xorm:"comment('县,区名称') INT(11)"`
- }
|