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.
43 lines
791 B
Java
43 lines
791 B
Java
package com.glxp.api.res.system;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @author : zhangsan
|
|
* @date : 2023/3/20 14:23
|
|
* @modyified By :
|
|
*/
|
|
@Data
|
|
public class SysMenuHelpResponse {
|
|
|
|
private Integer id;
|
|
|
|
private String menuKey;
|
|
|
|
private String menuName;
|
|
|
|
private Byte status;
|
|
|
|
private String filePath;
|
|
|
|
private String remark;
|
|
|
|
private Date updateTime;
|
|
|
|
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";
|
|
}
|