go-wxhelper/service/aiassistant.go
2024-07-05 09:32:39 +08:00

15 lines
298 B
Go

package service
import (
"go-wechat/client"
"go-wechat/model/entity"
)
// GetAllAiAssistant
// @description: 取出所有AI助手
// @return records
func GetAllAiAssistant() (records []entity.AiAssistant, err error) {
err = client.MySQL.Order("created_at DESC").Find(&records).Error
return
}