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