package cn.autoform.web.mapper.industrycategory; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import cn.autoform.bean.BusinessCategoryCusEntity; /** * 模板中心Mapper * @author lt-qxy * */ @Mapper public interface IndustryCategoryMapper { //删除分类 Integer deleteBusinessCategoryService(@Param("bus") BusinessCategoryCusEntity businessCategory); //从业务分类表中取出行业通用与垂直行业的数据 List getNormalAndVerticalList(BusinessCategoryCusEntity businessCategory); //从业务分类表中取出精品应用 List getExcellentList(BusinessCategoryCusEntity businessCategory); //从业务分类表中取出最新应用 List getNewestList(BusinessCategoryCusEntity businessCategory); //从业务分类表中取出所有数据 List getBusinessCategoryList(BusinessCategoryCusEntity businessCategory); }