Administrator
1 days ago 5e4afaf5e6aeb6e5418c654ee491bdeb5a01e5e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cc.mrbird.febs.ai.req;
 
import lombok.Data;
 
@Data
public class AiProductQuestionAiDto {
    private String companyId;
 
    private String productCategoryId;
 
    private Integer difficulty;
 
    private String query;
 
    private String promptAiSystem;
 
    private String jsonFormat;
 
    private Integer questionCnt;
 
}