日志错误信息增加长度

This commit is contained in:
苏尹岚
2020-03-04 15:29:04 +08:00
parent 26a2c92449
commit f1d795c623
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ type OperateEvent struct {
APIFunction string `orm:"column(api_function)" json:"apiFunction"`
JsonData string `orm:"size(3200)" json:"jsonData"`
ErrCode string `orm:"size(32)" json:"errCode"`
ErrMsg string `orm:"size(3200)" json:"errMsg"`
ErrMsg string `orm:"size(9999)" json:"errMsg"`
UseTime int `json:"useTime"`
}