15 lines
298 B
Go
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
|
|
}
|