IPublicInfo.cs 385 B

1234567891011121314
  1. using CZFW.Framework.Interface;
  2. using CZKJ.GBRS2.Entity;
  3. using System.Collections.Generic;
  4. namespace CZKJ.GBRS2.Interface
  5. {
  6. public interface IPublicInfo : ILogicBase<PublicInfoEntity>
  7. {
  8. IList<PublicInfoEntity> GetList(IList<int> typeIdList, int? typeId,string keywords, int pageIndex, int pageSize, out int rowsCount);
  9. bool JudgeQuote(int typeId);
  10. }
  11. }