提现城市分成比例

This commit is contained in:
苏尹岚
2020-11-11 10:17:22 +08:00
parent 97f9e44e8a
commit cd156feba9
4 changed files with 26 additions and 11 deletions

View File

@@ -58,6 +58,11 @@ type Order struct {
PrepayID string `orm:"column(prepay_id);size(48)" json:"prepayID"` // 下单后支付前支付方生成的事务ID
OriginalData string `orm:"type(text)" json:"-"`
Comment string `orm:"size(255)" json:"comment"` //备注
Lng float64 `json:"lng"`
Lat float64 `json:"lat"`
CityCode int `orm:"default(0)" json:"cityCode"` //提交订单时用户所在城市
DistrictCode int `orm:"default(0)" json:"districtCode"`
Address string `orm:"size(255)" json:"address"`
}
func (v *Order) TableUnique() [][]string {