拓展接口响应
This commit is contained in:
@@ -39,10 +39,11 @@ type NutrientResponse struct {
|
||||
|
||||
// ListNutrientRequest 定义了获取营养种类列表的请求参数
|
||||
type ListNutrientRequest struct {
|
||||
Page int `json:"page" query:"page"` // 页码
|
||||
PageSize int `json:"page_size" query:"page_size"` // 每页数量
|
||||
Name *string `json:"name" query:"name"` // 按名称模糊查询
|
||||
OrderBy string `json:"order_by" query:"order_by"` // 排序字段,例如 "id DESC"
|
||||
Page int `json:"page" query:"page"` // 页码
|
||||
PageSize int `json:"page_size" query:"page_size"` // 每页数量
|
||||
Name *string `json:"name" query:"name"` // 按营养名称模糊查询
|
||||
RawMaterialName *string `json:"raw_material_name" query:"raw_material_name"` // 按原料名称模糊查询
|
||||
OrderBy string `json:"order_by" query:"order_by"` // 排序字段,例如 "id DESC"
|
||||
}
|
||||
|
||||
// ListNutrientResponse 是获取营养种类列表的响应结构
|
||||
@@ -89,10 +90,11 @@ type RawMaterialResponse struct {
|
||||
|
||||
// ListRawMaterialRequest 定义了获取原料列表的请求参数
|
||||
type ListRawMaterialRequest struct {
|
||||
Page int `json:"page" query:"page"` // 页码
|
||||
PageSize int `json:"page_size" query:"page_size"` // 每页数量
|
||||
Name *string `json:"name" query:"name"` // 按名称模糊查询
|
||||
OrderBy string `json:"order_by" query:"order_by"` // 排序字段,例如 "id DESC"
|
||||
Page int `json:"page" query:"page"` // 页码
|
||||
PageSize int `json:"page_size" query:"page_size"` // 每页数量
|
||||
Name *string `json:"name" query:"name"` // 按原料名称模糊查询
|
||||
NutrientName *string `json:"nutrient_name" query:"nutrient_name"` // 按营养名称模糊查询
|
||||
OrderBy string `json:"order_by" query:"order_by"` // 排序字段,例如 "id DESC"
|
||||
}
|
||||
|
||||
// ListRawMaterialResponse 是获取原料列表的响应结构
|
||||
|
||||
@@ -143,7 +143,12 @@ func (s *feedManagementServiceImpl) GetNutrient(ctx context.Context, id uint32)
|
||||
func (s *feedManagementServiceImpl) ListNutrients(ctx context.Context, req *dto.ListNutrientRequest) (*dto.ListNutrientResponse, error) {
|
||||
serviceCtx := logs.AddFuncName(ctx, s.ctx, "ListNutrients")
|
||||
|
||||
nutrients, total, err := s.recipeSvc.ListNutrients(serviceCtx, req.Page, req.PageSize)
|
||||
opts := repository.NutrientListOptions{
|
||||
Name: req.Name,
|
||||
RawMaterialName: req.RawMaterialName,
|
||||
OrderBy: req.OrderBy,
|
||||
}
|
||||
nutrients, total, err := s.recipeSvc.ListNutrients(serviceCtx, opts, req.Page, req.PageSize)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("获取营养种类列表失败: %w", err)
|
||||
}
|
||||
@@ -218,7 +223,12 @@ func (s *feedManagementServiceImpl) GetRawMaterial(ctx context.Context, id uint3
|
||||
func (s *feedManagementServiceImpl) ListRawMaterials(ctx context.Context, req *dto.ListRawMaterialRequest) (*dto.ListRawMaterialResponse, error) {
|
||||
serviceCtx := logs.AddFuncName(ctx, s.ctx, "ListRawMaterials")
|
||||
|
||||
rawMaterials, total, err := s.recipeSvc.ListRawMaterials(serviceCtx, req.Page, req.PageSize)
|
||||
opts := repository.RawMaterialListOptions{
|
||||
Name: req.Name,
|
||||
NutrientName: req.NutrientName,
|
||||
OrderBy: req.OrderBy,
|
||||
}
|
||||
rawMaterials, total, err := s.recipeSvc.ListRawMaterials(serviceCtx, opts, req.Page, req.PageSize)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("获取原料列表失败: %w", err)
|
||||
}
|
||||
|
||||
@@ -32,14 +32,14 @@ type Service interface {
|
||||
UpdateNutrient(ctx context.Context, id uint32, name, description string) (*models.Nutrient, error)
|
||||
DeleteNutrient(ctx context.Context, id uint32) error
|
||||
GetNutrient(ctx context.Context, id uint32) (*models.Nutrient, error)
|
||||
ListNutrients(ctx context.Context, page, pageSize int) ([]models.Nutrient, int64, error)
|
||||
ListNutrients(ctx context.Context, opts repository.NutrientListOptions, page, pageSize int) ([]models.Nutrient, int64, error)
|
||||
|
||||
// 原料相关接口
|
||||
CreateRawMaterial(ctx context.Context, name, description string) (*models.RawMaterial, error)
|
||||
UpdateRawMaterial(ctx context.Context, id uint32, name, description string) (*models.RawMaterial, error)
|
||||
DeleteRawMaterial(ctx context.Context, id uint32) error
|
||||
GetRawMaterial(ctx context.Context, id uint32) (*models.RawMaterial, error)
|
||||
ListRawMaterials(ctx context.Context, page, pageSize int) ([]models.RawMaterial, int64, error)
|
||||
ListRawMaterials(ctx context.Context, opts repository.RawMaterialListOptions, page, pageSize int) ([]models.RawMaterial, int64, error)
|
||||
|
||||
// 猪品种相关接口
|
||||
CreatePigBreed(ctx context.Context, breed *models.PigBreed) error
|
||||
@@ -175,10 +175,10 @@ func (s *recipeServiceImpl) GetNutrient(ctx context.Context, id uint32) (*models
|
||||
}
|
||||
|
||||
// ListNutrients 实现了列出营养种类的逻辑
|
||||
func (s *recipeServiceImpl) ListNutrients(ctx context.Context, page, pageSize int) ([]models.Nutrient, int64, error) {
|
||||
func (s *recipeServiceImpl) ListNutrients(ctx context.Context, opts repository.NutrientListOptions, page, pageSize int) ([]models.Nutrient, int64, error) {
|
||||
serviceCtx := logs.AddFuncName(ctx, s.ctx, "ListNutrients")
|
||||
|
||||
nutrients, total, err := s.nutrientRepo.ListNutrients(serviceCtx, page, pageSize)
|
||||
nutrients, total, err := s.nutrientRepo.ListNutrients(serviceCtx, opts, page, pageSize)
|
||||
if err != nil {
|
||||
return nil, 0, fmt.Errorf("获取营养种类列表失败: %w", err)
|
||||
}
|
||||
@@ -279,10 +279,10 @@ func (s *recipeServiceImpl) GetRawMaterial(ctx context.Context, id uint32) (*mod
|
||||
}
|
||||
|
||||
// ListRawMaterials 实现了列出原料的逻辑
|
||||
func (s *recipeServiceImpl) ListRawMaterials(ctx context.Context, page, pageSize int) ([]models.RawMaterial, int64, error) {
|
||||
func (s *recipeServiceImpl) ListRawMaterials(ctx context.Context, opts repository.RawMaterialListOptions, page, pageSize int) ([]models.RawMaterial, int64, error) {
|
||||
serviceCtx := logs.AddFuncName(ctx, s.ctx, "ListRawMaterials")
|
||||
|
||||
rawMaterials, total, err := s.rawMaterialRepo.ListRawMaterials(serviceCtx, page, pageSize)
|
||||
rawMaterials, total, err := s.rawMaterialRepo.ListRawMaterials(serviceCtx, opts, page, pageSize)
|
||||
if err != nil {
|
||||
return nil, 0, fmt.Errorf("获取原料列表失败: %w", err)
|
||||
}
|
||||
|
||||
@@ -11,12 +11,19 @@ import (
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// NutrientListOptions 定义了查询营养种类列表时的筛选条件
|
||||
type NutrientListOptions struct {
|
||||
Name *string
|
||||
RawMaterialName *string
|
||||
OrderBy string
|
||||
}
|
||||
|
||||
// NutrientRepository 定义了与营养种类相关的数据库操作接口
|
||||
type NutrientRepository interface {
|
||||
CreateNutrient(ctx context.Context, nutrient *models.Nutrient) error
|
||||
GetNutrientByID(ctx context.Context, id uint32) (*models.Nutrient, error)
|
||||
GetNutrientByName(ctx context.Context, name string) (*models.Nutrient, error)
|
||||
ListNutrients(ctx context.Context, page, pageSize int) ([]models.Nutrient, int64, error)
|
||||
ListNutrients(ctx context.Context, opts NutrientListOptions, page, pageSize int) ([]models.Nutrient, int64, error)
|
||||
UpdateNutrient(ctx context.Context, nutrient *models.Nutrient) error
|
||||
DeleteNutrient(ctx context.Context, id uint32) error
|
||||
}
|
||||
@@ -61,19 +68,36 @@ func (r *gormNutrientRepository) GetNutrientByName(ctx context.Context, name str
|
||||
}
|
||||
|
||||
// ListNutrients 列出所有营养种类(分页),并预加载关联的原料信息
|
||||
func (r *gormNutrientRepository) ListNutrients(ctx context.Context, page, pageSize int) ([]models.Nutrient, int64, error) {
|
||||
func (r *gormNutrientRepository) ListNutrients(ctx context.Context, opts NutrientListOptions, page, pageSize int) ([]models.Nutrient, int64, error) {
|
||||
repoCtx := logs.AddFuncName(ctx, r.ctx, "ListNutrients")
|
||||
var nutrients []models.Nutrient
|
||||
var total int64
|
||||
|
||||
db := r.db.WithContext(repoCtx).Model(&models.Nutrient{})
|
||||
|
||||
// 应用筛选条件
|
||||
if opts.Name != nil && *opts.Name != "" {
|
||||
db = db.Where("name LIKE ?", "%"+*opts.Name+"%")
|
||||
}
|
||||
|
||||
// 如果传入了原料名称,则使用子查询进行筛选
|
||||
if opts.RawMaterialName != nil && *opts.RawMaterialName != "" {
|
||||
subQuery := r.db.Model(&models.RawMaterialNutrient{}).
|
||||
Select("nutrient_id").
|
||||
Joins("JOIN raw_materials ON raw_materials.id = raw_material_nutrients.raw_material_id").
|
||||
Where("raw_materials.name LIKE ?", "%"+*opts.RawMaterialName+"%")
|
||||
db = db.Where("id IN (?)", subQuery)
|
||||
}
|
||||
|
||||
// 首先计算总数
|
||||
if err := db.Count(&total).Error; err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
// 然后应用分页并获取数据
|
||||
// 然后应用排序、分页并获取数据
|
||||
if opts.OrderBy != "" {
|
||||
db = db.Order(opts.OrderBy)
|
||||
}
|
||||
offset := (page - 1) * pageSize
|
||||
if err := db.Preload("RawMaterialNutrients.RawMaterial").Offset(offset).Limit(pageSize).Find(&nutrients).Error; err != nil {
|
||||
return nil, 0, err
|
||||
|
||||
@@ -11,12 +11,19 @@ import (
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// RawMaterialListOptions 定义了查询原料列表时的筛选条件
|
||||
type RawMaterialListOptions struct {
|
||||
Name *string
|
||||
NutrientName *string
|
||||
OrderBy string
|
||||
}
|
||||
|
||||
// RawMaterialRepository 定义了与原料相关的数据库操作接口
|
||||
type RawMaterialRepository interface {
|
||||
CreateRawMaterial(ctx context.Context, rawMaterial *models.RawMaterial) error
|
||||
GetRawMaterialByID(ctx context.Context, id uint32) (*models.RawMaterial, error)
|
||||
GetRawMaterialByName(ctx context.Context, name string) (*models.RawMaterial, error)
|
||||
ListRawMaterials(ctx context.Context, page, pageSize int) ([]models.RawMaterial, int64, error)
|
||||
ListRawMaterials(ctx context.Context, opts RawMaterialListOptions, page, pageSize int) ([]models.RawMaterial, int64, error)
|
||||
UpdateRawMaterial(ctx context.Context, rawMaterial *models.RawMaterial) error
|
||||
DeleteRawMaterial(ctx context.Context, id uint32) error
|
||||
|
||||
@@ -64,20 +71,38 @@ func (r *gormRawMaterialRepository) GetRawMaterialByName(ctx context.Context, na
|
||||
return &rawMaterial, nil
|
||||
}
|
||||
|
||||
// ListRawMaterials 列出所有原料(分页),并预加载关联的营养素信息
|
||||
func (r *gormRawMaterialRepository) ListRawMaterials(ctx context.Context, page, pageSize int) ([]models.RawMaterial, int64, error) {
|
||||
// ListRawMaterials 列出所有原料(分页),支持按名称和营养名称筛选
|
||||
func (r *gormRawMaterialRepository) ListRawMaterials(ctx context.Context, opts RawMaterialListOptions, page, pageSize int) ([]models.RawMaterial, int64, error) {
|
||||
repoCtx := logs.AddFuncName(ctx, r.ctx, "ListRawMaterials")
|
||||
var rawMaterials []models.RawMaterial
|
||||
var total int64
|
||||
|
||||
db := r.db.WithContext(repoCtx).Model(&models.RawMaterial{})
|
||||
|
||||
// 应用筛选条件
|
||||
if opts.Name != nil && *opts.Name != "" {
|
||||
db = db.Where("name LIKE ?", "%"+*opts.Name+"%")
|
||||
}
|
||||
|
||||
// 如果传入了营养名称,则使用子查询进行筛选
|
||||
if opts.NutrientName != nil && *opts.NutrientName != "" {
|
||||
// 子查询:从 raw_material_nutrients 和 nutrients 表中找到所有包含该营养的 raw_material_id
|
||||
subQuery := r.db.Model(&models.RawMaterialNutrient{}).
|
||||
Select("raw_material_id").
|
||||
Joins("JOIN nutrients ON nutrients.id = raw_material_nutrients.nutrient_id").
|
||||
Where("nutrients.name LIKE ?", "%"+*opts.NutrientName+"%")
|
||||
db = db.Where("id IN (?)", subQuery)
|
||||
}
|
||||
|
||||
// 首先计算总数
|
||||
if err := db.Count(&total).Error; err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
// 然后应用分页并获取数据
|
||||
// 然后应用排序、分页并获取数据
|
||||
if opts.OrderBy != "" {
|
||||
db = db.Order(opts.OrderBy)
|
||||
}
|
||||
offset := (page - 1) * pageSize
|
||||
if err := db.Preload("RawMaterialNutrients.Nutrient").Offset(offset).Limit(pageSize).Find(&rawMaterials).Error; err != nil {
|
||||
return nil, 0, err
|
||||
|
||||
Reference in New Issue
Block a user