From ca2541e214143b7690266fc8666e6aa55ee27071 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期三, 12 六月 2024 10:38:43 +0800
Subject: [PATCH] 1、删除压力测试相关数据库表test*,相应删除pojo和mapper; 2、删除demo模块及相关数据库表demo*,相应删除pojo和mapper。
---
/dev/null | 27 ---------------------------
1 files changed, 0 insertions(+), 27 deletions(-)
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoAddressMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoAddressMapper.java
deleted file mode 100644
index 79c5846..0000000
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoAddressMapper.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.dy.pipIrrGlobal.daoDemo;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.dy.pipIrrGlobal.pojoBa.BaUser;
-import com.dy.pipIrrGlobal.pojoDemo.DemoAddress;
-import org.apache.ibatis.annotations.Mapper;
-import org.apache.ibatis.annotations.Param;
-
-@Mapper
-public interface DemoAddressMapper extends BaseMapper<DemoAddress> {
-
- DemoAddress selectByUserId(@Param("userId") Long userId) ;
-}
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoAuthMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoAuthMapper.java
deleted file mode 100644
index 0934a9b..0000000
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoAuthMapper.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.dy.pipIrrGlobal.daoDemo;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.dy.pipIrrGlobal.pojoDemo.DemoAddress;
-import com.dy.pipIrrGlobal.pojoDemo.DemoAuth;
-import org.apache.ibatis.annotations.Mapper;
-
-import java.util.List;
-
-@Mapper
-public interface DemoAuthMapper extends BaseMapper<DemoAuth> {
- List<DemoAuth> selectAll() ;
-}
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoMpMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoMpMapper.java
deleted file mode 100644
index c7bebbe..0000000
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoMpMapper.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.dy.pipIrrGlobal.daoDemo;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.dy.pipIrrGlobal.pojoDemo.DemoMp;
-import org.apache.ibatis.annotations.Mapper;
-
-/**
- * 婕旂ず娌℃湁DemoMpMapper.xml瀹炵幇鏂瑰紡
- */
-@Mapper
-public interface DemoMpMapper extends BaseMapper<DemoMp> {
-}
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoRoleMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoRoleMapper.java
deleted file mode 100644
index c5f9b2c..0000000
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoRoleMapper.java
+++ /dev/null
@@ -1,61 +0,0 @@
-package com.dy.pipIrrGlobal.daoDemo;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.dy.pipIrrGlobal.pojoDemo.DemoAuth;
-import com.dy.pipIrrGlobal.pojoDemo.DemoRole;
-import org.apache.ibatis.annotations.Mapper;
-
-import java.util.List;
-
-@Mapper
-public interface DemoRoleMapper extends BaseMapper<DemoRole> {
- /**
- * delete by primary key
- *
- * @param id primaryKey
- * @return deleteCount
- */
- int deleteByPrimaryKey(Long id);
-
- /**
- * insert record to table
- *
- * @param record the record
- * @return insert count
- */
- int putin(DemoRole record);
-
- /**
- * insert record to table selective
- *
- * @param record the record
- * @return insert count
- */
- int insertSelective(DemoRole record);
-
- /**
- * select by primary key
- *
- * @param id primary key
- * @return object by primary key
- */
- DemoRole selectByPrimaryKey(Long id);
-
- /**
- * update record selective
- *
- * @param record the updated record
- * @return update count
- */
- int updateByPrimaryKeySelective(DemoRole record);
-
- /**
- * update record
- *
- * @param record the updated record
- * @return update count
- */
- int updateByPrimaryKey(DemoRole record);
-
- List<DemoRole> selectAll();
-}
\ No newline at end of file
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoTestMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoTestMapper.java
deleted file mode 100644
index 8fb2e7f..0000000
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoTestMapper.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.dy.pipIrrGlobal.daoDemo;
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.dy.pipIrrGlobal.pojoDemo.DemoTest;
-import org.apache.ibatis.annotations.Mapper;
-
-@Mapper
-public interface DemoTestMapper extends BaseMapper<DemoTest> {
- Integer queryCount() ;
-}
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoUserMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoUserMapper.java
deleted file mode 100644
index c8d0e74..0000000
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoDemo/DemoUserMapper.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.dy.pipIrrGlobal.daoDemo;
-
-
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.dy.pipIrrGlobal.pojoDemo.DemoUser;
-import org.apache.ibatis.annotations.Mapper;
-import org.apache.ibatis.annotations.Param;
-
-import java.util.List;
-
-@Mapper
-public interface DemoUserMapper extends BaseMapper<DemoUser> {
-
- int putin(DemoUser user) ;
-
- DemoUser selectById1(@Param("id") Long id);
-
- DemoUser selectById2(@Param("id") Long id);
-
- DemoUser selectById3(@Param("id") Long id);
-
- DemoUser selectById4(@Param("id") Long id);
-
- DemoUser selectById5(@Param("id") Long id);
-
- List<DemoUser> selectByRoleId(@Param("roleId") Long roleId) ;
-}
--
Gitblit v1.8.0