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
30 lines
504 B
5 days ago
|
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
|
||
|
{
|
||
|
}
|