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.
54 lines
1.0 KiB
Java
54 lines
1.0 KiB
Java
package com.glxp.api.req.system;
|
|
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @author : zhangsan
|
|
* @date : 2023/3/20 14:03
|
|
* @modyified By :
|
|
*/
|
|
|
|
@Data
|
|
public class SysMenuHelpRequest extends ListPageRequest {
|
|
|
|
|
|
private Integer id;
|
|
|
|
private String menuKey;
|
|
|
|
private String menuName;
|
|
|
|
private Integer status;
|
|
|
|
private String filePath;
|
|
|
|
private String remark;
|
|
|
|
private String updateTime;
|
|
|
|
private String helpType;
|
|
|
|
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";
|
|
}
|