diff --git a/src/models/service_award_return_flow.go b/src/models/service_award_return_flow.go index a54ec36..67b4e7d 100644 --- a/src/models/service_award_return_flow.go +++ b/src/models/service_award_return_flow.go @@ -11,6 +11,7 @@ type ServiceAwardReturnFlow struct { UpdateTime time.Time `json:"update_time" xorm:"DATETIME"` Sum string `json:"sum" xorm:"default 0.0000 comment('总待返') DECIMAL(30,4)"` HasReturnMoney string `json:"has_return_money" xorm:"default 0.0000 comment('已返') DECIMAL(30,4)"` + Price string `json:"price" xorm:"default 0.0000 comment('') DECIMAL(30,4)"` Period int `json:"period" xorm:"default 0 comment('期数') INT(11)"` EveryMoney string `json:"every_money" xorm:"default 0.0000 comment('平均分配金额') DECIMAL(30,4)"` HasPeriod int `json:"has_period" xorm:"default 0 comment('已返期数') INT(11)"`