附近小店
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

10 satır
446 B

  1. package model
  2. type CommunityTeamStoreAmount struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Uid int `json:"uid" xorm:"default 0 INT(11)"`
  5. StoreType int `json:"store_type" xorm:"default 0 comment('0官方自营店 1加盟店 2连锁店') INT(11)"`
  6. ParentUid int `json:"parent_uid" xorm:"default 0 comment('上级代理') INT(11)"`
  7. Amount string `json:"amount" xorm:"default 0.00 DECIMAL(20,2)"`
  8. }