|
|
@@ -8,7 +8,7 @@ type SmsRecord struct { |
|
|
|
Id int `json:"id" xorm:"not null pk autoincr INT(11)"` |
|
|
|
OrdId string `json:"ord_id" xorm:"not null default '' comment('订单id') VARCHAR(100)"` |
|
|
|
Uid int `json:"uid" xorm:"not null default 0 comment('主用户id') INT(11)"` |
|
|
|
Phone int64 `json:"phone" xorm:"not null default 0 comment('主账号-手机号码') BIGINT(13)"` |
|
|
|
Phone string `json:"phone" xorm:"not null default 0 comment('主账号-手机号码') VARCHAR(255)"` |
|
|
|
Nickname string `json:"nickname" xorm:"not null default '' comment('主账号-昵称') VARCHAR(255)"` |
|
|
|
Amount string `json:"amount" xorm:"not null default '0' comment('充值金额') VARCHAR(255)"` |
|
|
|
CostPrice string `json:"cost_price" xorm:"not null default '0' comment('付费价格') VARCHAR(255)"` |
|
|
|