附近小店
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

community_team_store_audit.go 1.8 KiB

před 1 měsícem
123456789101112131415161718192021222324252627282930
  1. package model
  2. import (
  3. "time"
  4. )
  5. type CommunityTeamStoreAudit struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid int `json:"uid" xorm:"default 0 INT(11)"`
  8. Lat string `json:"lat" xorm:"default 0.000000 comment('纬度') DECIMAL(30,6)"`
  9. Lng string `json:"lng" xorm:"default 0.000000 comment('经度') DECIMAL(30,6)"`
  10. Address string `json:"address" xorm:"default '' comment('详细地址') VARCHAR(255)"`
  11. CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
  12. UpdateAt time.Time `json:"update_at" xorm:"DATETIME"`
  13. State int `json:"state" xorm:"default 0 INT(1)"`
  14. Name string `json:"name" xorm:"default '' VARCHAR(255)"`
  15. Province string `json:"province" xorm:"comment('省级的名称') VARCHAR(255)"`
  16. City string `json:"city" xorm:"comment('市级的名称') VARCHAR(255)"`
  17. District string `json:"district" xorm:"comment('县,区名称') VARCHAR(255)"`
  18. Phone string `json:"phone" xorm:"default '' VARCHAR(255)"`
  19. ProvinceId int `json:"province_id" xorm:"default 0 comment('省级的名称') INT(11)"`
  20. CityId int `json:"city_id" xorm:"default 0 comment('市级的名称') INT(11)"`
  21. DistrictId int `json:"district_id" xorm:"default 0 comment('县,区名称') INT(11)"`
  22. BusinessLicenseImg string `json:"business_license_img" xorm:"VARCHAR(255)"`
  23. UserName string `json:"user_name" xorm:"VARCHAR(255)"`
  24. IdcardHeadImg string `json:"idcard_head_img" xorm:"VARCHAR(255)"`
  25. IdcardBadgeImg string `json:"idcard_badge_img" xorm:"VARCHAR(255)"`
  26. AccountImg string `json:"account_img" xorm:"VARCHAR(255)"`
  27. Info string `json:"info" xorm:"VARCHAR(255)"`
  28. }