feat: 迁移plant

This commit is contained in:
Blizzard
2026-05-23 13:55:05 +08:00
parent a93477ea8e
commit ae6d03d351
228 changed files with 25296 additions and 917 deletions
@@ -3,6 +3,7 @@ package logic
import (
"context"
plantModel "sundynix-micro-go/app/plant/model"
"sundynix-micro-go/app/plant/rpc/internal/svc"
"sundynix-micro-go/app/plant/rpc/plant"
@@ -23,8 +24,46 @@ func NewGetPlantListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetP
}
}
// 我的植物列表
func (l *GetPlantListLogic) GetPlantList(in *plant.PlantListReq) (*plant.PlantListResp, error) {
// todo: add your logic here and delete this line
db := l.svcCtx.DB.Model(&plantModel.MyPlant{}).Where("user_id = ?", in.UserId)
if in.Name != "" {
db = db.Where("name like ?", "%"+in.Name+"%")
}
return &plant.PlantListResp{}, nil
var total int64
db.Count(&total)
pageSize := int(in.PageSize)
if pageSize <= 0 {
pageSize = 20
}
offset := (int(in.Current) - 1) * pageSize
if offset < 0 {
offset = 0
}
var list []plantModel.MyPlant
if err := db.Limit(pageSize).Offset(offset).Order("created_at desc").Find(&list).Error; err != nil {
return nil, err
}
var result []*plant.PlantInfo
for _, item := range list {
result = append(result, &plant.PlantInfo{
Id: item.ID,
UserId: item.UserID,
Name: item.Name,
PlantTime: item.PlantTime.Format("2006-01-02"),
Status: int32(item.Status),
Placement: item.Placement,
PotMaterial: item.PotMaterial,
PotSize: item.PotSize,
Sunlight: item.Sunlight,
PlantingMaterial: item.PlantingMaterial,
CreatedAt: item.CreatedAt.Unix(),
})
}
return &plant.PlantListResp{List: result, Total: total}, nil
}