2026-04-27 10:27:57 +08:00
|
|
|
package com.labelsys.backend.entity;
|
|
|
|
|
|
2026-05-06 19:07:45 +08:00
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
2026-04-27 10:27:57 +08:00
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
2026-05-06 19:07:45 +08:00
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
2026-04-27 10:27:57 +08:00
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@TableName("annotation_result")
|
|
|
|
|
public class AnnotationResult {
|
2026-05-06 19:07:45 +08:00
|
|
|
|
2026-04-27 10:27:57 +08:00
|
|
|
@TableId(type = IdType.INPUT)
|
|
|
|
|
private Long id;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("company_id")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Long companyId;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("creator_id")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Long creatorId;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("creator_role")
|
|
|
|
|
private String creatorRole;
|
|
|
|
|
|
|
|
|
|
@TableField("task_id")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Long taskId;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("resource_id")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Long resourceId;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("qa_content_file_path")
|
2026-04-27 10:27:57 +08:00
|
|
|
private String qaContentFilePath;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("diff_summary_file_path")
|
|
|
|
|
private String diffSummaryFilePath;
|
|
|
|
|
|
|
|
|
|
@TableField("requires_manual_review")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Boolean requiresManualReview;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("is_deleted")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Boolean isDeleted;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("reviewer_id")
|
2026-04-27 10:27:57 +08:00
|
|
|
private Long reviewerId;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("review_comment")
|
2026-04-27 10:27:57 +08:00
|
|
|
private String reviewComment;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("reviewed_at")
|
2026-04-27 10:27:57 +08:00
|
|
|
private LocalDateTime reviewedAt;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("created_at")
|
2026-04-27 10:27:57 +08:00
|
|
|
private LocalDateTime createdAt;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField("updated_at")
|
2026-04-27 10:27:57 +08:00
|
|
|
private LocalDateTime updatedAt;
|
2026-05-06 19:07:45 +08:00
|
|
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
}
|