189 lines
6.9 KiB
Go
189 lines
6.9 KiB
Go
package pet
|
||
|
||
import (
|
||
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/model/pet"
|
||
petReq "github.com/flipped-aurora/gin-vue-admin/server/model/pet/request"
|
||
"github.com/gin-gonic/gin"
|
||
"go.uber.org/zap"
|
||
)
|
||
|
||
type PetAiConversationsApi struct{}
|
||
|
||
// CreatePetAiConversations 创建petAiConversations表
|
||
// @Tags PetAiConversations
|
||
// @Summary 创建petAiConversations表
|
||
// @Security ApiKeyAuth
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Param data body pet.PetAiConversations true "创建petAiConversations表"
|
||
// @Success 200 {object} response.Response{msg=string} "创建成功"
|
||
// @Router /petAiConversations/createPetAiConversations [post]
|
||
func (petAiConversationsApi *PetAiConversationsApi) CreatePetAiConversations(c *gin.Context) {
|
||
// 创建业务用Context
|
||
ctx := c.Request.Context()
|
||
|
||
var petAiConversations pet.PetAiConversations
|
||
err := c.ShouldBindJSON(&petAiConversations)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
err = petAiConversationsService.CreatePetAiConversations(ctx, &petAiConversations)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("创建失败!", zap.Error(err))
|
||
response.FailWithMessage("创建失败:"+err.Error(), c)
|
||
return
|
||
}
|
||
response.OkWithMessage("创建成功", c)
|
||
}
|
||
|
||
// DeletePetAiConversations 删除petAiConversations表
|
||
// @Tags PetAiConversations
|
||
// @Summary 删除petAiConversations表
|
||
// @Security ApiKeyAuth
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Param data body pet.PetAiConversations true "删除petAiConversations表"
|
||
// @Success 200 {object} response.Response{msg=string} "删除成功"
|
||
// @Router /petAiConversations/deletePetAiConversations [delete]
|
||
func (petAiConversationsApi *PetAiConversationsApi) DeletePetAiConversations(c *gin.Context) {
|
||
// 创建业务用Context
|
||
ctx := c.Request.Context()
|
||
|
||
ID := c.Query("ID")
|
||
err := petAiConversationsService.DeletePetAiConversations(ctx, ID)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("删除失败!", zap.Error(err))
|
||
response.FailWithMessage("删除失败:"+err.Error(), c)
|
||
return
|
||
}
|
||
response.OkWithMessage("删除成功", c)
|
||
}
|
||
|
||
// DeletePetAiConversationsByIds 批量删除petAiConversations表
|
||
// @Tags PetAiConversations
|
||
// @Summary 批量删除petAiConversations表
|
||
// @Security ApiKeyAuth
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Success 200 {object} response.Response{msg=string} "批量删除成功"
|
||
// @Router /petAiConversations/deletePetAiConversationsByIds [delete]
|
||
func (petAiConversationsApi *PetAiConversationsApi) DeletePetAiConversationsByIds(c *gin.Context) {
|
||
// 创建业务用Context
|
||
ctx := c.Request.Context()
|
||
|
||
IDs := c.QueryArray("IDs[]")
|
||
err := petAiConversationsService.DeletePetAiConversationsByIds(ctx, IDs)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("批量删除失败!", zap.Error(err))
|
||
response.FailWithMessage("批量删除失败:"+err.Error(), c)
|
||
return
|
||
}
|
||
response.OkWithMessage("批量删除成功", c)
|
||
}
|
||
|
||
// UpdatePetAiConversations 更新petAiConversations表
|
||
// @Tags PetAiConversations
|
||
// @Summary 更新petAiConversations表
|
||
// @Security ApiKeyAuth
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Param data body pet.PetAiConversations true "更新petAiConversations表"
|
||
// @Success 200 {object} response.Response{msg=string} "更新成功"
|
||
// @Router /petAiConversations/updatePetAiConversations [put]
|
||
func (petAiConversationsApi *PetAiConversationsApi) UpdatePetAiConversations(c *gin.Context) {
|
||
// 从ctx获取标准context进行业务行为
|
||
ctx := c.Request.Context()
|
||
|
||
var petAiConversations pet.PetAiConversations
|
||
err := c.ShouldBindJSON(&petAiConversations)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
err = petAiConversationsService.UpdatePetAiConversations(ctx, petAiConversations)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("更新失败!", zap.Error(err))
|
||
response.FailWithMessage("更新失败:"+err.Error(), c)
|
||
return
|
||
}
|
||
response.OkWithMessage("更新成功", c)
|
||
}
|
||
|
||
// FindPetAiConversations 用id查询petAiConversations表
|
||
// @Tags PetAiConversations
|
||
// @Summary 用id查询petAiConversations表
|
||
// @Security ApiKeyAuth
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Param ID query uint true "用id查询petAiConversations表"
|
||
// @Success 200 {object} response.Response{data=pet.PetAiConversations,msg=string} "查询成功"
|
||
// @Router /petAiConversations/findPetAiConversations [get]
|
||
func (petAiConversationsApi *PetAiConversationsApi) FindPetAiConversations(c *gin.Context) {
|
||
// 创建业务用Context
|
||
ctx := c.Request.Context()
|
||
|
||
ID := c.Query("ID")
|
||
repetAiConversations, err := petAiConversationsService.GetPetAiConversations(ctx, ID)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("查询失败!", zap.Error(err))
|
||
response.FailWithMessage("查询失败:"+err.Error(), c)
|
||
return
|
||
}
|
||
response.OkWithData(repetAiConversations, c)
|
||
}
|
||
|
||
// GetPetAiConversationsList 分页获取petAiConversations表列表
|
||
// @Tags PetAiConversations
|
||
// @Summary 分页获取petAiConversations表列表
|
||
// @Security ApiKeyAuth
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Param data query petReq.PetAiConversationsSearch true "分页获取petAiConversations表列表"
|
||
// @Success 200 {object} response.Response{data=response.PageResult,msg=string} "获取成功"
|
||
// @Router /petAiConversations/getPetAiConversationsList [get]
|
||
func (petAiConversationsApi *PetAiConversationsApi) GetPetAiConversationsList(c *gin.Context) {
|
||
// 创建业务用Context
|
||
ctx := c.Request.Context()
|
||
|
||
var pageInfo petReq.PetAiConversationsSearch
|
||
err := c.ShouldBindQuery(&pageInfo)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
list, total, err := petAiConversationsService.GetPetAiConversationsInfoList(ctx, pageInfo)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("获取失败!", zap.Error(err))
|
||
response.FailWithMessage("获取失败:"+err.Error(), c)
|
||
return
|
||
}
|
||
response.OkWithDetailed(response.PageResult{
|
||
List: list,
|
||
Total: total,
|
||
Page: pageInfo.Page,
|
||
PageSize: pageInfo.PageSize,
|
||
}, "获取成功", c)
|
||
}
|
||
|
||
// GetPetAiConversationsPublic 不需要鉴权的petAiConversations表接口
|
||
// @Tags PetAiConversations
|
||
// @Summary 不需要鉴权的petAiConversations表接口
|
||
// @Accept application/json
|
||
// @Produce application/json
|
||
// @Success 200 {object} response.Response{data=object,msg=string} "获取成功"
|
||
// @Router /petAiConversations/getPetAiConversationsPublic [get]
|
||
func (petAiConversationsApi *PetAiConversationsApi) GetPetAiConversationsPublic(c *gin.Context) {
|
||
// 创建业务用Context
|
||
ctx := c.Request.Context()
|
||
|
||
// 此接口不需要鉴权
|
||
// 示例为返回了一个固定的消息接口,一般本接口用于C端服务,需要自己实现业务逻辑
|
||
petAiConversationsService.GetPetAiConversationsPublic(ctx)
|
||
response.OkWithDetailed(gin.H{
|
||
"info": "不需要鉴权的petAiConversations表接口信息",
|
||
}, "获取成功", c)
|
||
}
|