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);
-
-
-
-
- IList<PublicTypeEntity> GetChildList(int? parentId);
-
-
-
-
- IList<PublicTypeEntity> GetParentList();
- }
- }
|