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.

35 lines
658 B

5 months ago
using Common.Enum;
using Entity.DbModel.System;
using HybirdFrameworkCore.Entity;
5 months ago
namespace Entity.Dto.Req
{
public class PageNoticeReq : QueryPageModel
5 months ago
{
/// <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
{
}
}