using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model { public class op_softproject_remark { /// /// GID /// private string _gid; public string GID { get { return _gid; } set { _gid = value; } } /// /// PROJECTID /// private string _projectid; public string PROJECTID { get { return _projectid; } set { _projectid = value; } } /// /// PROJECTID /// private string _content; public string CONTENT { get { return _content; } set { _content = value; } } /// /// INPUTBY /// private string _inputby; public string INPUTBY { get { return _inputby; } set { _inputby = value; } } /// /// INPUTTIME /// private DateTime? _inputtime; public DateTime? INPUTTIME { get { return _inputtime; } set { _inputtime = value; } } } }