Administrator
2025-08-21 cba91796368ab184d921ac59bba5cfac90c25436
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
package cc.mrbird.febs.ai.res.memberAnswer;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author Administrator
 */
@Data
@ApiModel(value = "ApiMemberProductWorkVo", description = "参数")
public class ApiMemberProductWorkVo {
 
    @ApiModelProperty(value = "ID")
    private String id;
    /**
     * 名称
     */
    @ApiModelProperty(value = "ID")
    private String name;
 
    /**
     * 目标
     */
    @ApiModelProperty(value = "ID")
    private String target;
 
    /**
     * 状态 0-进行中 1-已结束
     */
    @ApiModelProperty(value = "ID")
    private Integer state;
}