You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
428 B
Java
27 lines
428 B
Java
package com.supervision.prompt.vo;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
@Data
|
|
public class PromptRequestVO {
|
|
|
|
private Integer taskType;
|
|
|
|
private String fileId;
|
|
|
|
private List<ParamTestDTO> paramList;
|
|
|
|
private String prompt;
|
|
|
|
private String personName;
|
|
|
|
@ApiModelProperty("前端生成的唯一ID")
|
|
private String uid;
|
|
|
|
|
|
}
|