feat: 添加关键词回复

This commit is contained in:
lixiangwuxian
2024-10-20 15:47:00 +08:00
parent 003c9b6f90
commit 5a56f6fdc7
9 changed files with 340 additions and 32 deletions

10
service/kw/model.go Normal file
View File

@@ -0,0 +1,10 @@
package kw
type Kw struct {
ID int64 `json:"id" db:"id"`
Kw string `json:"kw" db:"kw"`
Reply string `json:"reply" db:"reply"`
GroupID string `json:"group_id" db:"group_id"`
CreatedBy string `json:"created_by" db:"created_by"`
CreatedAt string `json:"created_at" db:"created_at"`
}