TopicDTO.java 904 字节
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;
}