feat(ai): 添加视频封面字段并更新相关接口
- 在 ApiProductPointInfoVo 类中添加 feedImg 字段,用于存储视频封面- 在 AiProductPointServiceImpl 中更新相关方法,支持视频封面的传递
| | |
| | | private String feedId; |
| | | |
| | | /** |
| | | * 视频封面 |
| | | */ |
| | | @ApiModelProperty(value = "视频封面") |
| | | private String feedImg; |
| | | |
| | | /** |
| | | * 标题 |
| | | */ |
| | | @ApiModelProperty(value = "标题") |
| | |
| | | apiProductPointInfoVo.setIsNormal(entity.getIsNormal()); |
| | | apiProductPointInfoVo.setFinderUserName(entity.getFinderUserName()); |
| | | apiProductPointInfoVo.setFeedId(entity.getFeedId()); |
| | | apiProductPointInfoVo.setFeedImg(entity.getFeedImg()); |
| | | apiProductPointInfoVo.setTitle(entity.getTitle()); |
| | | apiProductPointInfoVo.setDescription(entity.getDescription()); |
| | | } |