All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.cms.dao.ICategoryDao Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2012-present 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循 铭软科技《服务协议》中的《保密条款》
 */




package net.mingsoft.cms.dao;

import net.mingsoft.base.dao.IBaseDao;
import net.mingsoft.cms.entity.CategoryEntity;
import org.springframework.stereotype.Component;

import java.util.List;

/**
 * 分类持久层
 * @author 铭飞开发团队
 * 创建日期:2019-11-28 15:12:32
* 历史修订:
*/ @Component("cmsCategoryDao") public interface ICategoryDao extends IBaseDao { /** * 查询当前分类下面的所有子分类 * @param category 必须存在categoryId categoryParentId * @return */ public List queryChildren(CategoryEntity category); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy