附近小店
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

38 行
999 B

  1. package md
  2. import "applet/app/db/model"
  3. type Store struct {
  4. P string `json:"p"`
  5. Size string `json:"size"`
  6. Name string `json:"name"`
  7. }
  8. type StoreGroup struct {
  9. model.User `xorm:"extends"`
  10. model.CommunityTeamStore `xorm:"extends"`
  11. }
  12. type StoreSave struct {
  13. Uid string `json:"uid"`
  14. AgentCommission string `json:"agent_commission"`
  15. }
  16. type StoreOrder struct {
  17. P string `json:"p"`
  18. Size string `json:"size"`
  19. Nickname string `json:"nickname"`
  20. Phone string `json:"phone"`
  21. StartTime string `json:"start_time"`
  22. EndTime string `json:"end_time"`
  23. Oid string `json:"oid"`
  24. StoreUid string `json:"store_uid"`
  25. StoreName string `json:"store_name"`
  26. ConfirmStartTime string `json:"confirm_start_time"`
  27. ConfirmEndTime string `json:"confirm_end_time"`
  28. }
  29. type StoreOrderTotal struct {
  30. StoreUid string `json:"store_uid"`
  31. }
  32. type StoreOrderDetail struct {
  33. Oid string `json:"oid"`
  34. }