using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class ResponseNoticeInfo
{
///
/// 公告标题
///
public string title
{
get; set;
}
///
/// 公告内容
///
public string content
{
get; set;
}
///
/// 创建者
///
public string createper
{
get; set;
}
///
/// 添加时间
///
public DateTime createDate
{
get; set;
}
}
public class ResponseNoticeList
{
///
///
///
public List listNotice
{
get; set;
}
}
public class NoticeInfo : NoticeImage
{
///
///公告内容
///
public string content
{
get; set;
}
}
public class NoticeImage : Notice
{
///
/// 图片地址
///
public string imgurl
{
get; set;
}
}
///
///
///
public class Notice
{
///
/// 主键
///
public string id
{
get; set;
}
///
/// 公告标题
///
public string title
{
get; set;
}
///
/// 创建者
///
public string createper
{
get; set;
}
///
/// 添加时间
///
public DateTime createDate
{
get; set;
}
///
/// 阅读状态:true已读,false未读
///
public bool IsRead
{
get; set;
}
}
}