附近小店
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

md_store.go 2.3 KiB

hace 2 meses
hace 2 meses
hace 2 meses
hace 2 meses
hace 2 meses
hace 2 meses
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package md
  2. import (
  3. "applet/app/db/model"
  4. )
  5. type Store struct {
  6. P string `json:"p"`
  7. Size string `json:"size"`
  8. Name string `json:"name"`
  9. }
  10. type StoreGroup struct {
  11. model.User `xorm:"extends"`
  12. model.CommunityTeamStore `xorm:"extends"`
  13. }
  14. type StoreSave struct {
  15. Uid string `json:"uid"`
  16. AgentCommission string `json:"agent_commission"`
  17. }
  18. type StoreOrder struct {
  19. P string `json:"p"`
  20. Size string `json:"size"`
  21. Nickname string `json:"nickname"`
  22. Phone string `json:"phone"`
  23. StartTime string `json:"start_time"`
  24. EndTime string `json:"end_time"`
  25. Oid string `json:"oid"`
  26. StoreUid string `json:"store_uid"`
  27. StoreName string `json:"store_name"`
  28. ConfirmStartTime string `json:"confirm_start_time"`
  29. ConfirmEndTime string `json:"confirm_end_time"`
  30. }
  31. type StoreOrderTotal struct {
  32. StoreUid string `json:"store_uid"`
  33. }
  34. type StoreOrderDetail struct {
  35. Oid string `json:"oid"`
  36. }
  37. // Register is 注册 postbody
  38. type Register struct {
  39. Mobile string `json:"mobile"`
  40. Captcha string `json:"captcha"`
  41. Type string `json:"type"`
  42. Zone string `json:"zone"`
  43. PicCode string `json:"pic_code"`
  44. PicCodeId string `json:"pic_code_id"`
  45. }
  46. type CommunityTeamStore struct {
  47. Lat string `json:"lat" xorm:"default 0.000000 comment('纬度') DECIMAL(30,6)"`
  48. Lng string `json:"lng" xorm:"default 0.000000 comment('经度') DECIMAL(30,6)"`
  49. Address string `json:"address" xorm:"comment('详细地址') VARCHAR(255)"`
  50. WorkState string `json:"work_state" xorm:"default 0 comment('0营业中 1休息中') INT(1)"`
  51. Name string `json:"name" xorm:"VARCHAR(255)"`
  52. Province string `json:"province" xorm:"comment('省级的名称') VARCHAR(255)"`
  53. City string `json:"city" xorm:"comment('市级的名称') VARCHAR(255)"`
  54. District string `json:"district" xorm:"comment('县,区名称') VARCHAR(255)"`
  55. Timer string `json:"timer" xorm:"comment('') VARCHAR(255)"`
  56. Phone string `json:"phone" xorm:"comment('') VARCHAR(255)"`
  57. Logo string `json:"logo" xorm:"comment('') VARCHAR(255)"`
  58. ProvinceId string `json:"province_id" xorm:"comment('省级的名称') INT(11)"`
  59. CityId string `json:"city_id" xorm:"comment('市级的名称') INT(11)"`
  60. DistrictId string `json:"district_id" xorm:"comment('县,区名称') INT(11)"`
  61. }