12345678910111213141516171819202122 |
- using CZFW.Framework.Interface;
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.Interface
- {
- public interface IPublicType : ILogicBase<PublicTypeEntity>
- {
- IList<PublicTypeEntity> GetList(int? parentId, string keywords, int pageIndex, int pageSize, out int rowsCount);
- /// <summary>
- /// 获取没有子集的类型
- /// </summary>
- /// <returns></returns>
- IList<PublicTypeEntity> GetChildList(int? parentId);
- /// <summary>
- /// 获取有子集的类型
- /// </summary>
- /// <returns></returns>
- IList<PublicTypeEntity> GetParentList();
- }
- }
|