xiaoyong931011
2020-08-12 420b90cd27ea932f64b25f3394967fd532cca186
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
package com.xcong.excoin.modules.helpCenter.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
 
/**
 * 帮助中心类别
 */
@Data
@TableName("help_center_type")
public class HelpCenterTypeEntity {
    
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
    /**
     * 所属类别(1:公告类型2:语言类型)
     */
    private int status;
    /**
     * 类型标识
     */
    private int type;
    /**
     * 语言类型(1:简体中文2:英文)
     */
    private int typeLanguage;
    /**
     *类型内容
     */
    private String content;
 
}