This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Common.Enum;
using Entity.DbModel.System.SysBaseObject;
namespace Entity.Dto.Req
{
public class PageNoticeReq : BasePageReq
/// <summary>
/// 标题
/// </summary>
public virtual string Title { get; set; }
/// 类型(1通知 2公告)
public virtual NoticeTypeEnum? Type { get; set; }
}
public class AddNoticeReq : SysNotice
public class UpdateNoticeReq : AddNoticeReq
public class DeleteNoticeReq : BaseIdReq
public class NoticeReq : BaseIdReq