| 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;  | 
|     /**  | 
|      *类型内容  | 
|      */  | 
|     private String content;  | 
|     /**  | 
|      *类型内容  | 
|      */  | 
|     private String contentUs;  | 
|   | 
| }  |