修正comment,banner接口

This commit is contained in:
sjm
2023-12-22 14:03:59 +08:00
parent 39048bbcfc
commit 7d3f10a7dc
11 changed files with 224 additions and 23 deletions

View File

@@ -1,9 +1,13 @@
package com.lovenav.dao;
import com.lovenav.entity.Banners;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
@Mapper
public interface BannersDao {
int deleteByPrimaryKey(Integer id);
@@ -16,4 +20,6 @@ public interface BannersDao {
int updateByPrimaryKeySelective(Banners record);
int updateByPrimaryKey(Banners record);
List<Banners> selectByAllBanners();
}