From 390312ef82736fc3434e2d77cc7feadffee807e3 Mon Sep 17 00:00:00 2001 From: gazebo Date: Sat, 29 Sep 2018 18:06:57 +0800 Subject: [PATCH] - fix JxBadComments.UpdatedMsg to text. --- business/model/legacy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/model/legacy.go b/business/model/legacy.go index 80e54e599..926d0393c 100644 --- a/business/model/legacy.go +++ b/business/model/legacy.go @@ -48,7 +48,7 @@ type JxBadComments struct { UpdatedVendertags string `json:"updatedVenderTags" orm:"column(updated_vendertags);size(255);null" description:"更改后的标签信息"` OrderFlag string `json:"order_flag" orm:"column(order_flag);size(255);null" description:"订单类别(0:京东 1:美团 2:饿了么)"` Msg string `json:"-" orm:"column(msg);type(text)" description:"未解决差评的原始信息"` - UpdatedMsg string `json:"updatedMsg" orm:"column(updated_msg);null" description:"解决后的差评的原始信息"` + UpdatedMsg string `json:"-" orm:"column(updated_msg);type(text);null" description:"解决后的差评的原始信息"` LastPushTime string `json:"-" orm:"column(last_push_time);size(255);null" description:"上一次推送的时间"` PushNo int `json:"-" orm:"column(push_no);null" description:"推送次数"` }