| | |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springblade.core.tool.utils.DateUtil; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * AI成果表 分页查询参数类 |
| | |
| | | @ApiModelProperty(value = "AI流请求key") |
| | | private String aiReqKey; |
| | | |
| | | /** |
| | | * 创建开始时间 |
| | | */ |
| | | @ApiModelProperty(value = "创建开始时间") |
| | | @DateTimeFormat(pattern = DateUtil.PATTERN_DATETIME) |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 创建结束时间 |
| | | */ |
| | | @ApiModelProperty(value = "创建结束时间") |
| | | @DateTimeFormat(pattern = DateUtil.PATTERN_DATETIME) |
| | | private Date endTime; |
| | | |
| | | } |