You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
Java
61 lines
1.6 KiB
Java
package com.glxp.api.entity.system;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
@Data
|
|
@TableName(value = "sys_menu_help")
|
|
public class SysMenuHelpEntity {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
@TableField(value = "menuKey")
|
|
private String menuKey;
|
|
|
|
@TableField(value = "menuName")
|
|
private String menuName;
|
|
|
|
@TableField(value = "`status`")
|
|
private Integer status;
|
|
|
|
@TableField(value = "filePath")
|
|
private String filePath;
|
|
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
@TableField(value = "updateTime")
|
|
private String updateTime;
|
|
|
|
@TableField(value = "helpType")
|
|
private Integer helpType;
|
|
|
|
@TableField(value = "urlPath")
|
|
private String urlPath;
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
public static final String COL_MENUKEY = "menuKey";
|
|
|
|
public static final String COL_MENUNAME = "menuName";
|
|
|
|
public static final String COL_STATUS = "status";
|
|
|
|
public static final String COL_FILEPATH = "filePath";
|
|
|
|
public static final String COL_REMARK = "remark";
|
|
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
public static final String COL_HELPTYPE = "helpType";
|
|
|
|
public static final String COL_URLPATH = "urlPath";
|
|
}
|