吉安感知网项目-后端
linwei
2026-02-28 465580e3b8c4e26b4dd8f35524c0cd2fc87d9652
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
35
36
37
38
39
40
41
42
43
44
45
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;
 
import java.util.List;
 
/**
 * AI成果表 新增/修改参数类
 *
 * @author lw
 * @since 2026-02-28
 */
@Data
public class GdAiResultsAddParam {
    @ApiModelProperty("主键id")
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
 
    /**
     * AI流请求key
     */
    @ApiModelProperty(value = "AI流请求key")
    private String aiReqKey;
 
    /**
     * 识别结果附件地址无框
     */
    @ApiModelProperty(value = "识别结果附件地址无框")
    private String orgAttUrl;
 
    /**
     * 识别框坐标点,格式:x1,y1,x2,y2,x3,y3,x4,y4
     */
    @ApiModelProperty(value = "识别框坐标点,格式:x1,y1,x2,y2,x3,y3,x4,y4")
    private List<String> points;
 
    /**
     * 区域编码
     */
    @ApiModelProperty(value = "区域编码")
    private String areaCode;
}