feat(PriceBiz): 新增商品类型字段并完善商品列表逻辑
All checks were successful
ZhenTu-BE/pipeline/head This commit looks good

新增 GoodsListRespVO 中的 goodsType 字段,用于区分不同商品类型。补充商品列表中“录像集”与“照片集”的类型标识。
在 PriceBiz 中注入 FaceService 并延迟加载,优化依赖关系。
根据内容购买状态判断是否整体购买,增强一口价商品的处理逻辑。
This commit is contained in:
2025-09-20 04:51:51 +08:00
parent f10ede0d2c
commit 7ca59a1b0b
3 changed files with 21 additions and 3 deletions

View File

@@ -10,4 +10,5 @@ import lombok.NoArgsConstructor;
public class GoodsListRespVO {
private Long goodsId;
private String goodsName;
private Integer goodsType;
}