|
@@ -2,6 +2,7 @@ package models |
|
@@ -2,6 +2,7 @@ package models |
2
|
|
2
|
|
3
|
import (
|
3
|
import (
|
4
|
"fmt"
|
4
|
"fmt"
|
|
|
5
|
+ "time"
|
5
|
|
6
|
|
6
|
"github.com/astaxie/beego/orm"
|
7
|
"github.com/astaxie/beego/orm"
|
7
|
)
|
8
|
)
|
|
@@ -22,7 +23,7 @@ type Chance struct { |
|
@@ -22,7 +23,7 @@ type Chance struct { |
22
|
ReviewStatus int8 `orm:"column(review_status)" description:"审核状态 0:待处理 1:待审核 2:被退回 3:已通过 "`
|
23
|
ReviewStatus int8 `orm:"column(review_status)" description:"审核状态 0:待处理 1:待审核 2:被退回 3:已通过 "`
|
23
|
EnableStatus int8 `orm:"column(enable_status)" description:"有效状态 0:无效 1:有效 "`
|
24
|
EnableStatus int8 `orm:"column(enable_status)" description:"有效状态 0:无效 1:有效 "`
|
24
|
UpdateAt string `orm:"column(update_at)" description:"更新时间"`
|
25
|
UpdateAt string `orm:"column(update_at)" description:"更新时间"`
|
25
|
- CreateAt string `orm:"column(create_at)" description:"创建时间"`
|
26
|
+ CreateAt time.Time `orm:"column(create_at);type(timestamp);" description:"创建时间"`
|
26
|
BasicScore float64 `orm:"column(basic_score);null;digits(4);decimals(1)" description:"基础评分"`
|
27
|
BasicScore float64 `orm:"column(basic_score);null;digits(4);decimals(1)" description:"基础评分"`
|
27
|
ExtraScore float64 `orm:"column(extra_score);null;digits(4);decimals(1)" description:"附加评分"`
|
28
|
ExtraScore float64 `orm:"column(extra_score);null;digits(4);decimals(1)" description:"附加评分"`
|
28
|
ValueScore float64 `orm:"column(value_score);null;digits(4);decimals(1)" description:"价值评分"`
|
29
|
ValueScore float64 `orm:"column(value_score);null;digits(4);decimals(1)" description:"价值评分"`
|