feat(ai): 添加产品要点信息中的公司ID字段
- 在ApiProductPointInfoVo中新增companyId属性
- 为companyId字段添加Swagger API文档注解
- 在服务实现中将实体的companyId映射到响应对象
| | |
| | | */ |
| | | @ApiModelProperty(value = "标题") |
| | | private String title; |
| | | @ApiModelProperty(value = "公司ID") |
| | | private String companyId; |
| | | |
| | | /** |
| | | * 描述 |
| | |
| | | apiProductPointInfoVo.setTitle(entity.getTitle()); |
| | | apiProductPointInfoVo.setTalkContext(entity.getTalkContext()); |
| | | apiProductPointInfoVo.setDescription(entity.getDescription()); |
| | | apiProductPointInfoVo.setCompanyId(entity.getCompanyId()); |
| | | } |
| | | return new FebsResponse().success().data(apiProductPointInfoVo); |
| | | } |