TopicDTO.java
904 字节
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
package com.aigeo.keyword.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 话题DTO
*/
@Data
@Schema(description = "话题数据传输对象")
public class TopicDTO {
@Schema(description = "话题ID")
private Integer id;
@Schema(description = "公司ID")
private Integer companyId;
@Schema(description = "来源任务ID")
private Integer sourceTaskId;
@Schema(description = "话题标题")
private String title;
@Schema(description = "话题描述")
private String description;
@Schema(description = "原始来源链接")
private String sourceUrl;
@Schema(description = "话题状态")
private String status;
@Schema(description = "创建时间")
private LocalDateTime createdAt;
@Schema(description = "更新时间")
private LocalDateTime updatedAt;
}