package com.ruoyi.basic.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <br>
|
* 客户跟进附件表
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/04 14:41
|
*/
|
@Data
|
@TableName(value = "customer_follow_up_file")
|
public class CustomerFollowUpFile implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 跟进记录ID
|
*/
|
private Integer followUpId;
|
|
/**
|
* 文件名称
|
*/
|
private String fileName;
|
|
/**
|
* 文件访问地址
|
*/
|
private String fileUrl;
|
|
/**
|
* 文件大小(单位:字节)
|
*/
|
private Long fileSize;
|
|
/**
|
* 文件后缀
|
*/
|
private String fileSuffix;
|
|
/**
|
* 上传者
|
*/
|
private Long createUser;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 修改者
|
*/
|
private Long updateUser;
|
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
|
/**
|
* 租户ID
|
*/
|
private Long tenantId;
|
}
|