Administrator
8 days ago 565a6c8861aa436ceeb7bcbebb2352addd89b02a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.ai.res.productPoint;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiProductPointRecommendVo", description = "参数")
public class ApiProductPointRecommendVo {
 
    @ApiModelProperty(value = "知识点ID")
    private String id;
 
    /**
     * 名称
     */
    @ApiModelProperty(value = "名称")
    private String title;
}