KKSU
2023-11-07 83233c76c9dd08e54d26694805be88e563e2fe12
src/main/java/cc/mrbird/febs/mall/service/IMallNewsInfoService.java
@@ -9,6 +9,8 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
public interface IMallNewsInfoService extends IService<MallNewsInfo> {
    IPage<AdminMallNewsInfoVo> getNewInfoList(MallNewsInfo mallNewsInfo, QueryRequest request);
@@ -26,4 +28,8 @@
    void addOrModifyNewsCategory(MallNewsCategory mallNewsCategory);
    MallNewsCategory findNewsCategoryById(Long id);
    List<MallNewsCategory> findAllCategory();
    FebsResponse addVideoInfo(MallNewsInfoDto mallNewsInfoDto);
}