|
|
@@ -1,12 +1,18 @@ |
|
|
|
package models |
|
|
|
|
|
|
|
type HappyOrchardSeed struct { |
|
|
|
Id int `json:"id" xorm:"not null pk autoincr comment('自增id') INT(11)"` |
|
|
|
Name string `json:"name" xorm:"not null default '' comment('名称') VARCHAR(255)"` |
|
|
|
WaterNums int `json:"water_nums" xorm:"not null default 0 comment('所需水滴数') INT(11)"` |
|
|
|
SeedImgUrl string `json:"seed_img_url" xorm:"not null default '' comment('种子图片地址') VARCHAR(255)"` |
|
|
|
SeedMatureImgUrl string `json:"seed_mature_img_url" xorm:"not null default '' comment('种子成熟后图片地址') VARCHAR(255)"` |
|
|
|
Sort int `json:"sort" 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)"` |
|
|
|
Name string `json:"name" xorm:"not null default '' comment('名称') VARCHAR(255)"` |
|
|
|
WaterNums int `json:"water_nums" xorm:"not null default 0 comment('所需水滴数') INT(11)"` |
|
|
|
SeedImgUrl string `json:"seed_img_url" xorm:"not null default '' comment('种子图片地址') VARCHAR(255)"` |
|
|
|
SeedMatureImgUrl string `json:"seed_mature_img_url" xorm:"not null default '' comment('种子成熟后图片地址') VARCHAR(255)"` |
|
|
|
Sort int `json:"sort" xorm:"not null default 0 comment('排序') INT(11)"` |
|
|
|
NeedWatersNumForStage0 int `json:"need_waters_num_for_stage_0" xorm:"not null default 0 comment('阶段1所需水滴数') INT(11)"` |
|
|
|
NeedWatersNumForStage1 int `json:"need_waters_num_for_stage_1" xorm:"not null default 0 comment('阶段2所需水滴数') INT(11)"` |
|
|
|
NeedWatersNumForStage2 int `json:"need_waters_num_for_stage_2" xorm:"not null default 0 comment('阶段3所需水滴数') INT(11)"` |
|
|
|
NeedWatersNumForStage3 int `json:"need_waters_num_for_stage_3" xorm:"not null default 0 comment('阶段4所需水滴数') INT(11)"` |
|
|
|
NeedWatersNumForStage4 int `json:"need_waters_num_for_stage_4" xorm:"not null default 0 comment('阶段5所需水滴数') INT(11)"` |
|
|
|
NeedWatersNumForStage5 int `json:"need_waters_num_for_stage_5" xorm:"not null default 0 comment('阶段6所需水滴数') 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"` |
|
|
|
} |