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;
|
}
|