package com.ruoyi.mall.mapper; import java.util.List; import com.ruoyi.mall.domain.MallIndustryAnalysis; /** * 行业分析Mapper接口 * * @author LCL * @date 2023-10-20 */ public interface MallIndustryAnalysisMapper { /** * 查询行业分析 * * @param industryAnalysisId 行业分析主键 * @return 行业分析 */ public MallIndustryAnalysis selectMallIndustryAnalysisByIndustryAnalysisId(Long industryAnalysisId); /** * 查询行业分析列表 * * @param mallIndustryAnalysis 行业分析 * @return 行业分析集合 */ public List selectMallIndustryAnalysisList(MallIndustryAnalysis mallIndustryAnalysis); /** * 新增行业分析 * * @param mallIndustryAnalysis 行业分析 * @return 结果 */ public int insertMallIndustryAnalysis(MallIndustryAnalysis mallIndustryAnalysis); /** * 修改行业分析 * * @param mallIndustryAnalysis 行业分析 * @return 结果 */ public int updateMallIndustryAnalysis(MallIndustryAnalysis mallIndustryAnalysis); /** * 删除行业分析 * * @param industryAnalysisId 行业分析主键 * @return 结果 */ public int deleteMallIndustryAnalysisByIndustryAnalysisId(Long industryAnalysisId); /** * 批量删除行业分析 * * @param industryAnalysisIds 需要删除的数据主键集合 * @return 结果 */ public int deleteMallIndustryAnalysisByIndustryAnalysisIds(Long[] industryAnalysisIds); }