Compare commits

...

2 Commits

Author SHA1 Message Date
244901bf6a Merge branch 'chat' into dev 2025-06-18 15:33:20 +08:00
b39f315ac2 Update chatAutoReplyRulerHandler.go 2025-06-18 15:33:07 +08:00

View File

@ -113,7 +113,7 @@ func (a *ChatAutoReplyRulerHandler) GetChatAutoReplyRulerList(c *gin.Context) {
var protoReq = accountFiee.GetChatAutoReplyRulerListRequest{Query: &accountFiee.ChatAutoReplyRulerData{}}
utils.RequestDataConvert(&req, &protoReq)
if req.RuleType != "" {
protoReq.Where = fmt.Sprintf("ruler LIKE '%%%s\":{\"enable\":true}%%'", req.RuleType)
protoReq.Where = fmt.Sprintf("ruler LIKE '%%%s\":{\"enable\":true%%'", req.RuleType)
}
resp, err := service.AccountFieeProvider.GetChatAutoReplyRulerList(c, &protoReq)
if err != nil {