1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package org.sxkj.gd.airesults.param;
|
| import com.fasterxml.jackson.databind.annotation.JsonSerialize;
| import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * AI成果表 分页查询参数类
| *
| * @author lw
| * @since 2026-02-28
| */
| @Data
| public class GdAiResultsPageParam {
|
| /**
| * AI流请求key
| */
| @ApiModelProperty(value = "AI流请求key")
| private String aiReqKey;
|
| }
|
|