refactor: 移除不需要的表
This commit is contained in:
parent
47fa0d2bd7
commit
a55e35ab24
|
|
@ -1,25 +0,0 @@
|
||||||
package com.nflg.mobilebroken.repository.entity;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import lombok.Getter;
|
|
||||||
import lombok.Setter;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* VIEW
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 代码生成器生成
|
|
||||||
* @since 2025
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@Accessors(chain = true)
|
|
||||||
@TableName("v_admin_user_menu")
|
|
||||||
public class VAdminUserMenu implements Serializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
}
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
package com.nflg.mobilebroken.repository.mapper;
|
|
||||||
|
|
||||||
import com.nflg.mobilebroken.repository.entity.VAdminUserMenu;
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* VIEW Mapper 接口
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 曹鹏飞
|
|
||||||
* @since 2025-01-03
|
|
||||||
*/
|
|
||||||
public interface VAdminUserMenuMapper extends BaseMapper<VAdminUserMenu> {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
package com.nflg.mobilebroken.repository.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
|
||||||
import com.nflg.mobilebroken.repository.entity.VAdminUserMenu;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* VIEW 服务类
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 曹鹏飞
|
|
||||||
* @since 2025-01-03
|
|
||||||
*/
|
|
||||||
public interface IVAdminUserMenuService extends IService<VAdminUserMenu> {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
package com.nflg.mobilebroken.repository.service.impl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.nflg.mobilebroken.repository.entity.VAdminUserMenu;
|
|
||||||
import com.nflg.mobilebroken.repository.mapper.VAdminUserMenuMapper;
|
|
||||||
import com.nflg.mobilebroken.repository.service.IVAdminUserMenuService;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* VIEW 服务实现类
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 曹鹏飞
|
|
||||||
* @since 2025-01-03
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class VAdminUserMenuServiceImpl extends ServiceImpl<VAdminUserMenuMapper, VAdminUserMenu> implements IVAdminUserMenuService {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
<?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.nflg.mobilebroken.repository.mapper.VAdminUserMenuMapper">
|
|
||||||
|
|
||||||
</mapper>
|
|
||||||
Loading…
Reference in New Issue