web-文件接口

This commit is contained in:
2025-10-16 10:45:44 +08:00
parent 6858899c4c
commit 40ef609ea3
191 changed files with 2379 additions and 1593 deletions

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.resource.TbBanner;
/**
* @description 横幅控制器
* @filename BannerController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import org.xyzh.common.dto.resource.TbDataCollectionLog;
/**
* @description 数据采集控制器
* @filename DataCollectionController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import java.util.Map;
/**
* @description 首页控制器
* @filename HomePageController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.resource.TbResourceCategory;
/**
* @description 资源分类控制器
* @filename ResourceCategoryController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import java.util.Map;
/**
* @description 资源中心控制器
* @filename ResourceCenterController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.resource.TbResource;
/**
* @description 资源控制器
* @filename ResourceController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -13,7 +13,7 @@ import java.util.Map;
/**
* @description 资源管理控制器
* @filename ResourceManagementController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.resource.TbResourceRecommend;
/**
* @description 资源推荐控制器
* @filename ResourceRecommendController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.resource.TbTag;
/**
* @description 标签控制器
* @filename TagController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description Banner数据访问层
* @filename BannerMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface BannerMapper extends BaseMapper<TbBanner> {
* @description 查询Banner列表
* @param filter 过滤条件
* @return List<TbBanner> Banner列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbBanner> selectBanners(TbBanner filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 数据采集配置数据访问层
* @filename DataCollectionConfigMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface DataCollectionConfigMapper extends BaseMapper<TbDataCollectionC
* @description 查询数据采集配置列表
* @param filter 过滤条件
* @return List<TbDataCollectionConfig> 数据采集配置列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbDataCollectionConfig> selectDataCollectionConfigs(TbDataCollectionConfig filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 数据采集记录数据访问层
* @filename DataCollectionLogMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface DataCollectionLogMapper extends BaseMapper<TbDataCollectionLog>
* @description 查询数据采集记录列表
* @param filter 过滤条件
* @return List<TbDataCollectionLog> 数据采集记录列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbDataCollectionLog> selectDataCollectionLogs(TbDataCollectionLog filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 资源分类数据访问层
* @filename ResourceCategoryMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface ResourceCategoryMapper extends BaseMapper<TbResourceCategory> {
* @description 查询资源分类列表
* @param filter 过滤条件
* @return List<TbResourceCategory> 资源分类列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbResourceCategory> selectResourceCategories(TbResourceCategory filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 资源数据访问层
* @filename ResourceMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface ResourceMapper extends BaseMapper<TbResource> {
* @description 查询资源列表
* @param filter 过滤条件
* @return List<TbResource> 资源列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbResource> selectResources(TbResource filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 资源推荐数据访问层
* @filename ResourceRecommendMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface ResourceRecommendMapper extends BaseMapper<TbResourceRecommend>
* @description 查询资源推荐列表
* @param filter 过滤条件
* @return List<TbResourceRecommend> 资源推荐列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbResourceRecommend> selectResourceRecommends(TbResourceRecommend filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 资源标签关联数据访问层
* @filename ResourceTagMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface ResourceTagMapper extends BaseMapper<TbResourceTag> {
* @description 查询资源标签关联列表
* @param filter 过滤条件
* @return List<TbResourceTag> 资源标签关联列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbResourceTag> selectResourceTags(TbResourceTag filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 标签数据访问层
* @filename TagMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface TagMapper extends BaseMapper<TbTag> {
* @description 查询标签列表
* @param filter 过滤条件
* @return List<TbTag> 标签列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbTag> selectTags(TbTag filter);

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.news.banner.BannerService;
/**
* @description 横幅服务接口
* @filename NCBannerService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.news.collection.DataCollectionService;
/**
* @description 数据采集服务接口
* @filename NCDataCollectionService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.news.category.ResourceCategoryService;
/**
* @description 资源分类服务接口
* @filename NCResourceCategoryService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.news.recommend.ResourceRecommendService;
/**
* @description 资源推荐服务接口
* @filename NCResourceRecommendService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.news.resource.ResourceService;
/**
* @description 资源服务接口
* @filename NCResourceService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.news.tag.TagService;
/**
* @description 标签服务接口
* @filename NCTagService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -14,7 +14,7 @@ import org.xyzh.api.news.banner.BannerService;
/**
* @description 横幅服务实现类
* @filename NCBannerServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -17,7 +17,7 @@ import org.xyzh.api.news.collection.DataCollectionService;
/**
* @description 数据采集服务实现类
* @filename NCDataCollectionServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import org.xyzh.api.news.category.ResourceCategoryService;
/**
* @description 资源分类服务实现类
* @filename NCResourceCategoryServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -14,7 +14,7 @@ import org.xyzh.api.news.recommend.ResourceRecommendService;
/**
* @description 资源推荐服务实现类
* @filename NCResourceRecommendServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import org.xyzh.api.news.resource.ResourceService;
/**
* @description 资源服务实现类
* @filename NCResourceServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -15,7 +15,7 @@ import org.xyzh.api.news.tag.TagService;
/**
* @description 标签服务实现类
* @filename NCTagServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/