敏感词过滤

This commit is contained in:
Rosy-zhudan
2019-08-16 14:26:22 +08:00
parent 634ac5ebe6
commit 4636ea7fd5
8 changed files with 90 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
package model
type SensitiveWords struct {
ID int `orm:"column(id)" json:"id"`
Words string `orm:"size(30);column(words);unique" json:"words"`
}