using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Api.Advertisement.Notices;
using ARW.Model.Models.Business.Advertisement.Notices;
using ARW.Model.Vo.Api.Advertisement.Notices;
namespace ARW.Service.Api.IBusinessService.Advertisement.Notices
{
///
/// 公告接口类Api
///
/// @author lwh
/// @date 2023-10-09
///
public interface INoticeServiceApi : IBaseService
{
///
/// 获取公告分页列表(Api)
///
///
///
Task> GetNoticeListApi(NoticeQueryDtoApi parm);
}
}