using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZhonTai.Admin.Services.Notice.Dto
{
public class NoticeListOutput
{
public long Id { get; set; }
///
/// 公告标题
///
public string Title { get; set; }
///
/// 排序 越大越靠前
///
public int Rank { get; set; }
///
/// 是否弹窗 1弹窗 0不弹窗
///
public int IsAlter { get; set; }
///
///
///
public DateTime? CreatedTime { get; set; }
}
}