Browse Source

搜索接口

zyf12 2 years ago
parent
commit
152e0759fb

+ 0 - 1
ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/PostNoticeController.java

@@ -67,7 +67,6 @@ public class PostNoticeController extends BaseController
         return error("未找到相应数据");
     }*/
 
-
     @ApiOperation("搜索公告列表")
     @PreAuthorize("@ss.hasPermi('system:notice:queryNotice')")
     @GetMapping("/queryNotice")

+ 0 - 1
ruoyi-system/src/main/java/com/ruoyi/system/mapper/PostNoticeMapper.java

@@ -7,7 +7,6 @@ import org.apache.ibatis.annotations.Param;
 
 
 
-
 /**
  * 公告Mapper接口
  *

+ 0 - 1
ruoyi-system/src/main/java/com/ruoyi/system/service/IPostNoticeService.java

@@ -59,7 +59,6 @@ public interface IPostNoticeService
      * @param noticeId 公告主键
      * @return 结果
      */
-
     public int deletePostNoticeByNoticeId(Long noticeId);
 
     /**

+ 0 - 1
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/PostNoticeServiceImpl.java

@@ -79,7 +79,6 @@ public class PostNoticeServiceImpl implements IPostNoticeService
         return postNoticeMapper.insertPostNotice(postNotice);
     }
 
-
     /**
      * 修改公告
      *

+ 0 - 1
ruoyi-system/src/main/resources/mapper/system/PostNoticeMapper.xml

@@ -47,7 +47,6 @@
 
 
 
-
     <insert id="insertPostNotice" parameterType="PostNotice" useGeneratedKeys="true" keyProperty="noticeId">
         insert into post_notice
         <trim prefix="(" suffix=")" suffixOverrides=",">