You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Common.Enum;
|
|
|
|
|
using Entity.DbModel.System.SysBaseObject;
|
|
|
|
|
|
|
|
|
|
namespace Entity.Dto.Req
|
|
|
|
|
{
|
|
|
|
|
public class PageNoticeReq : BasePageReq
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标题
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 类型(1通知 2公告)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual NoticeTypeEnum? Type { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class AddNoticeReq : SysNotice
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class UpdateNoticeReq : AddNoticeReq
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DeleteNoticeReq : BaseIdReq
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NoticeReq : BaseIdReq
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|