You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.4 KiB
C#

using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//op_Notice
public class op_Notice
{
/// <summary>
/// GID
/// </summary>
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
/// <summary>
/// Title
/// </summary>
private string _title;
public string Title
{
get{ return _title; }
set{ _title = value; }
}
/// <summary>
/// Content
/// </summary>
private string _content;
public string Content
{
get{ return _content; }
set{ _content = value; }
}
/// <summary>
/// CreateUser
/// </summary>
private string _createuser;
public string CreateUser
{
get{ return _createuser; }
set{ _createuser = value; }
}
/// <summary>
/// CreateTime
/// </summary>
private DateTime? _createtime;
public DateTime? CreateTime
{
get{ return _createtime; }
set{ _createtime = value; }
}
}
}