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.3 KiB
C#
56 lines
1.3 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model
|
|
{
|
|
public class op_softproject_remark
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// PROJECTID
|
|
/// </summary>
|
|
private string _projectid;
|
|
public string PROJECTID
|
|
{
|
|
get { return _projectid; }
|
|
set { _projectid = value; }
|
|
}
|
|
/// <summary>
|
|
/// PROJECTID
|
|
/// </summary>
|
|
private string _content;
|
|
public string CONTENT
|
|
{
|
|
get { return _content; }
|
|
set { _content = value; }
|
|
}
|
|
/// <summary>
|
|
/// INPUTBY
|
|
/// </summary>
|
|
private string _inputby;
|
|
public string INPUTBY
|
|
{
|
|
get { return _inputby; }
|
|
set { _inputby = value; }
|
|
}
|
|
/// <summary>
|
|
/// INPUTTIME
|
|
/// </summary>
|
|
private DateTime? _inputtime;
|
|
public DateTime? INPUTTIME
|
|
{
|
|
get { return _inputtime; }
|
|
set { _inputtime = value; }
|
|
}
|
|
}
|
|
}
|