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.
BookingHeChuan/Myshipping.Core/Service/Notice/Dto/NoticeReceiveOutput.cs

25 lines
472 B
C#

2 years ago
using System;
namespace Myshipping.Core.Service;
2 years ago
/// <summary>
/// 通知公告接收参数
/// </summary>
public class NoticeReceiveOutput : NoticeBase
{
/// <summary>
/// Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 阅读状态(字典 0未读 1已读
/// </summary>
public int ReadStatus { get; set; }
/// <summary>
/// 阅读时间
/// </summary>
public DateTime ReadTime { get; set; }
}