package org.sxkj.system.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
@TableName("help_center")
|
public class HelpCenterEntity {
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 帮助中心一级类型
|
*/
|
private String levelOneType;
|
|
/**
|
* 帮助中心二级类型
|
*/
|
private String levelTwoType;
|
|
/**
|
* 文件/文档路径
|
*/
|
private String filePath;
|
|
/**
|
* 上传者 (数据库字段为 upload_user)
|
*/
|
private String uploadUser;
|
|
/**
|
* 上传时间 (数据库字段为 create_time)
|
*/
|
private LocalDateTime createTime;
|
}
|