- refactor bad comment
This commit is contained in:
@@ -216,17 +216,24 @@ func (o *OrderStatus) GetStatusTime() time.Time {
|
||||
|
||||
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
|
||||
VendorOrderID string `orm:"column(vendor_order_id);size(48);unique" json:"vendorOrderID"`
|
||||
VendorID int `orm:"column(vendor_id)" json:"vendorID"`
|
||||
VendorStoreID string `orm:"column(vendor_store_id);size(48)" json:"vendorStoreID"`
|
||||
StoreID int `orm:"column(store_id)" json:"storeID"` // 外部系统里记录的 jxstoreid
|
||||
UserCommentID string `orm:"column(user_comment_id);size(48)" json:"userCommentID"`
|
||||
IsReplied int8
|
||||
Status int8
|
||||
ModifyDuration int8 // 改评价的小时数
|
||||
|
||||
TagList string
|
||||
Score int8
|
||||
Content string
|
||||
CommentCreatedAt time.Time
|
||||
OriginalMsg string `orm:"type(text)" json:"-"`
|
||||
|
||||
UpdatedTagList string
|
||||
UpdatedScore int8
|
||||
UpdatedContent string
|
||||
CommentUpdatedAt time.Time
|
||||
UpdatedTagList string
|
||||
UpdatedScore int8
|
||||
UpdatedContent string
|
||||
CommentUpdatedAt time.Time
|
||||
UpdatedOriginalMsg string `orm:"type(text)" json:"-"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user