data-dump/src/main/java/com/celnet/datadump/entity/RichTextLog.java

68 lines
1.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.celnet.datadump.entity;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
import java.util.Date;
/**
* <p>
* 富文本替换记录表
* </p>
*
* @author Lingma
* @since 2025-10-10
*/
@Getter
@Setter
@TableName("richText_log")
@ApiModel(value = "RichTextLog对象", description = "富文本替换记录表")
public class RichTextLog implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty("主键ID")
@TableId(value = "ID", type = IdType.AUTO)
private Long id;
@ApiModelProperty("对象API名称")
@TableField("api")
private String api;
@ApiModelProperty("字段API名称")
@TableField("field")
private String field;
@ApiModelProperty("记录ID")
@TableField("record_id")
private String recordId;
@ApiModelProperty("记录OwnerID")
@TableField("record_owner_id")
private String recordOwnerId;
@ApiModelProperty("原始富文本内容")
@TableField("original_rich_text")
private String originalRichText;
@ApiModelProperty("原图片链接")
@TableField("original_image_url")
private String originalImageUrl;
@ApiModelProperty("新图片链接")
@TableField("new_image_url")
private String newImageUrl;
@ApiModelProperty("新文件IDContentDocumentId")
@TableField("new_file_id")
private String newFileId;
@ApiModelProperty("创建时间")
@TableField(value = "createdDate", fill = FieldFill.INSERT)
private Date createdDate;
}