You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
860 B
C#
34 lines
860 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.System.Dtos;
|
|
|
|
namespace DS.WMS.Core.System.Interface;
|
|
|
|
public interface ISysNoticeService
|
|
{
|
|
/// <summary>
|
|
/// 客户端获取公告列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
DataResult<List<ClientNoticeViewModel>> GetClientNoticeList(PageRequest request);
|
|
|
|
/// <summary>
|
|
/// 获取客户端公告信息
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult<ClientNoticeViewModel> GetClientNoticeInfo(int id);
|
|
|
|
/// <summary>
|
|
/// 设置公告已读
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult ReadNotice(int id);
|
|
|
|
/// <summary>
|
|
/// 获取未读消息列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
DataResult GetNoReadList();
|
|
} |