| | |
| | | package com.linghu.model.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | public class ResultListVO { |
| | | |
| | | @ApiModelProperty("结果id") |
| | | private Integer referenceId; |
| | | @ExcelIgnore |
| | | private Integer reference_id; |
| | | |
| | | @ApiModelProperty("平台名称") |
| | | @ExcelProperty("全部平台") |
| | | private String platformName; |
| | | private String platform_name; |
| | | |
| | | @ApiModelProperty("标题") |
| | | @ExcelProperty("标题") |
| | |
| | | |
| | | @ApiModelProperty("重复次数") |
| | | @ExcelProperty("重复次数") |
| | | private Integer repetitionNum; |
| | | private Integer repetition_num; |
| | | |
| | | @ApiModelProperty("发布时间") |
| | | @ExcelProperty("发布时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | private LocalDateTime create_time; |
| | | @ExcelProperty("发布网址") |
| | | private String url; |
| | | } |