diff --git a/zh-CN/mvc/model/models.md b/zh-CN/mvc/model/models.md index 85909c84..180d0415 100644 --- a/zh-CN/mvc/model/models.md +++ b/zh-CN/mvc/model/models.md @@ -204,7 +204,7 @@ type User struct { ```go type User struct { ... - Status int `orm:"default(1)" description:"这是状态字段"` + Status int `orm:"default(1);description(这是状态字段)"` ... } ```