系统帮助按钮
parent
263035ea3a
commit
8d7fe63620
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.dao.system;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.BasicBusTypeChangeEntity;
|
||||
import com.glxp.api.entity.system.SysMenuHelpEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SysMenuHelpMapper extends BaseMapper<SysMenuHelpEntity> {
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
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 lombok.Data;
|
||||
|
||||
@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 Byte status;
|
||||
|
||||
@TableField(value = "filePath")
|
||||
private String filePath;
|
||||
|
||||
@TableField(value = "remark")
|
||||
private String remark;
|
||||
|
||||
@TableField(value = "updateTime")
|
||||
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";
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.service.system;
|
||||
|
||||
import com.glxp.api.entity.system.SysMenuHelpEntity;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
public interface SysMenuHelpService {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.glxp.api.service.system.impl;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.dao.system.SysMenuHelpMapper;
|
||||
import com.glxp.api.entity.system.SysMenuHelpEntity;
|
||||
import com.glxp.api.service.system.SysMenuHelpService;
|
||||
|
||||
@Service
|
||||
public class SysMenuHelpServiceImpl implements SysMenuHelpService {
|
||||
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.glxp.api.dao.system.SysMenuHelpMapper">
|
||||
</mapper>
|
Loading…
Reference in New Issue