Administrator
2025-08-20 6a46668a0e701cdf8bd91bce1e78f9010fdeba73
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
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;
 
}