- add Updatetime in JxBadComments

This commit is contained in:
gazebo
2019-02-19 10:28:55 +08:00
parent 9b9cade4ab
commit 61b542a822
4 changed files with 46 additions and 20 deletions

View File

@@ -212,3 +212,20 @@ func (o *Waybill) GetStatusTime() time.Time {
func (o *OrderStatus) GetStatusTime() time.Time {
return o.StatusTime
}
type OrderComment struct {
ModelIDCUL
VendorOrderID string `orm:"column(vendor_order_id);size(48)" json:"vendorOrderID"`
VendorID int `orm:"column(vendor_id)" json:"vendorID"`
StoreID int
TagList string
Score int8
Content string
CommentCreatedAt time.Time
UpdatedTagList string
UpdatedScore int8
UpdatedContent string
CommentUpdatedAt time.Time
}