IType.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 命名空间: CZFW.Framework.Modules.Interface
  3. *
  4. * 功 能: N/A
  5. * 类 名: IType
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2016/12/1 9:10:08 吴争辉 初稿
  10. *
  11. * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:创执科技(北京)有限公司                │
  15. *└──────────────────────────────────┘
  16. */
  17. using System.Collections.Generic;
  18. using CZFW.Framework.Model.ViewModel;
  19. using CZFW.Framework.Model.Entity;
  20. namespace CZFW.Framework.Interface
  21. {
  22. /// <summary>
  23. /// 分类
  24. /// </summary>
  25. public interface IType : ILogicBase<TypeEntity>
  26. {
  27. /// <summary>
  28. /// 根据父Id获取类型列表
  29. /// </summary>
  30. /// <param name="parentId">父Id</param>
  31. /// <returns></returns>
  32. TableModel<TypeEntity> GetListByParentId(int parentId, int pageIndex, int pageSize);
  33. IList<TypeEntity> GetListByParentId(int parentId);
  34. ResultModel RemoveType(int id);
  35. }
  36. }