Admin.net框架
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.
 
 

30 lines
504 B

namespace Admin.NET.Core.Service;
public class PageNoticeInput : BasePageInput
{
/// <summary>
/// 标题
/// </summary>
public virtual string Title { get; set; }
/// <summary>
/// 类型(1通知 2公告)
/// </summary>
public virtual NoticeTypeEnum? Type { get; set; }
}
public class AddNoticeInput : SysNotice
{
}
public class UpdateNoticeInput : AddNoticeInput
{
}
public class DeleteNoticeInput : BaseIdInput
{
}
public class NoticeInput : BaseIdInput
{
}