吉安感知网项目-后端
xiebin
2026-01-06 d207a86cdf1ab52ef8cb7cd83bad8fceab8038cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
}