using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
[Serializable]
public partial class Notice
{
private int? id;
private string contents;
private int? sendState;
private string operatorNo;
private string operatorName;
private DateTime? operateDate;
///
///
///
public int? Id
{
get{ return id; }
set{ id=value; }
}
///
///
///
public string Contents
{
get{ return contents; }
set{ contents=value; }
}
///
///
///
public int? SendState
{
get{ return sendState; }
set{ sendState=value; }
}
///
///
///
public string OperatorNo
{
get{ return operatorNo; }
set{ operatorNo=value; }
}
///
///
///
public string OperatorName
{
get{ return operatorName; }
set{ operatorName=value; }
}
///
///
///
public DateTime? OperateDate
{
get{ return operateDate; }
set{ operateDate=value; }
}
}
}