Administrator
yesterday 8130bed63a505cf718481c0d95d3fcf7b037db96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package cc.mrbird.febs.ai.res.product;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author Administrator
 */
@Data
@ApiModel(value = "ApiProductVo", description = "参数")
public class ApiProductVo {
 
    @ApiModelProperty(value = "ID")
    private String id;
    /**
     * 名称
     */
    @ApiModelProperty(value = "ID")
    private String name;
 
    /**
     * 目标
     */
    @ApiModelProperty(value = "ID")
    private String target;
 
    /**
     * 小图标
     */
    @ApiModelProperty(value = "图片")
    private String iconImg;
 
}