1234567891011121314 |
- using CZFW.Framework.Interface;
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.Interface
- {
- public interface IPublicInfo : ILogicBase<PublicInfoEntity>
- {
- IList<PublicInfoEntity> GetList(IList<int> typeIdList, int? typeId,string keywords, int pageIndex, int pageSize, out int rowsCount);
- bool JudgeQuote(int typeId);
- }
- }
|