1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using System.Collections.Generic;
- using CZFW.Framework.Model.ViewModel;
- using CZFW.Framework.Model.Entity;
- namespace CZFW.Framework.Interface
- {
-
-
-
- public interface IType : ILogicBase<TypeEntity>
- {
-
-
-
-
-
- TableModel<TypeEntity> GetListByParentId(int parentId, int pageIndex, int pageSize);
- IList<TypeEntity> GetListByParentId(int parentId);
- ResultModel RemoveType(int id);
- }
- }
|