IPublicType.cs 668 B

12345678910111213141516171819202122
  1. using CZFW.Framework.Interface;
  2. using CZKJ.GBRS2.Entity;
  3. using System.Collections.Generic;
  4. namespace CZKJ.GBRS2.Interface
  5. {
  6. public interface IPublicType : ILogicBase<PublicTypeEntity>
  7. {
  8. IList<PublicTypeEntity> GetList(int? parentId, string keywords, int pageIndex, int pageSize, out int rowsCount);
  9. /// <summary>
  10. /// 获取没有子集的类型
  11. /// </summary>
  12. /// <returns></returns>
  13. IList<PublicTypeEntity> GetChildList(int? parentId);
  14. /// <summary>
  15. /// 获取有子集的类型
  16. /// </summary>
  17. /// <returns></returns>
  18. IList<PublicTypeEntity> GetParentList();
  19. }
  20. }