|
|
@@ -1,9 +1,10 @@ |
|
|
|
package models |
|
|
|
|
|
|
|
type HappyOrchardUserWaters struct { |
|
|
|
Id int `json:"id" xorm:"not null pk autoincr comment('自增id') INT(11)"` |
|
|
|
Uid string `json:"uid" xorm:"not null default '' comment('名称') VARCHAR(255)"` |
|
|
|
WaterNums int `json:"water_nums" xorm:"not null default 0 comment('水滴数') INT(11)"` |
|
|
|
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') DATETIME"` |
|
|
|
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') DATETIME"` |
|
|
|
Id int `json:"id" xorm:"not null pk autoincr comment('自增id') INT(11)"` |
|
|
|
Uid string `json:"uid" xorm:"not null default '' comment('名称') VARCHAR(255)"` |
|
|
|
WaterNums int `json:"water_nums" xorm:"not null default 0 comment('水滴数') INT(11)"` |
|
|
|
ReplaceSeedNums int `json:"replace_seed_nums" xorm:"not null default 0 comment('更换种子次数') INT(11)"` |
|
|
|
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') DATETIME"` |
|
|
|
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') DATETIME"` |
|
|
|
} |