using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//op_softproject
public class op_softproject
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// BSNO
///
private string _bsno;
public string BSNO
{
get{ return _bsno; }
set{ _bsno = value; }
}
///
/// BSSTATUS
///
private string _bsstatus;
public string BSSTATUS
{
get{ return _bsstatus; }
set{ _bsstatus = value; }
}
///
/// PROJECTNAME
///
private string _projectname;
public string PROJECTNAME
{
get{ return _projectname; }
set{ _projectname = value; }
}
///
/// CUSTOMERNAME
///
private string _customername;
public string CUSTOMERNAME
{
get{ return _customername; }
set{ _customername = value; }
}
///
/// PROJECTDATE
///
private DateTime? _projectdate;
public DateTime? PROJECTDATE
{
get{ return _projectdate; }
set{ _projectdate = value; }
}
///
/// PLANDATE
///
private DateTime? _plandate;
public DateTime? PLANDATE
{
get{ return _plandate; }
set{ _plandate = value; }
}
///
/// PROJECTDETAIL
///
private string _projectdetail;
public string PROJECTDETAIL
{
get{ return _projectdetail; }
set{ _projectdetail = value; }
}
///
/// MANAGEBY
///
private string _manageby;
public string MANAGEBY
{
get{ return _manageby; }
set{ _manageby = value; }
}
///
/// AUDITBY
///
private string _auditby;
public string AUDITBY
{
get{ return _auditby; }
set{ _auditby = value; }
}
///
/// AUDITTIME
///
private DateTime? _audittime;
public DateTime? AUDITTIME
{
get{ return _audittime; }
set{ _audittime = value; }
}
///
/// AUDITRESULT
///
private string _auditresult;
public string AUDITRESULT
{
get{ return _auditresult; }
set{ _auditresult = value; }
}
///
/// MODIFYBY
///
private string _modifyby;
public string MODIFYBY
{
get{ return _modifyby; }
set{ _modifyby = value; }
}
///
/// MODIFYSTTIME
///
private DateTime? _modifysttime;
public DateTime? MODIFYSTTIME
{
get{ return _modifysttime; }
set{ _modifysttime = value; }
}
///
/// MODIFYEDTIME
///
private DateTime? _modifyedtime;
public DateTime? MODIFYEDTIME
{
get{ return _modifyedtime; }
set{ _modifyedtime = value; }
}
///
/// MODIFYDETAIL
///
private string _modifydetail;
public string MODIFYDETAIL
{
get{ return _modifydetail; }
set{ _modifydetail = value; }
}
///
/// REMARKS
///
private string _remarks;
public string REMARKS
{
get{ return _remarks; }
set{ _remarks = 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; }
}
///
/// OVERBY
///
private string _overby;
public string OVERBY
{
get{ return _overby; }
set{ _overby = value; }
}
///
/// OVERTIME
///
private DateTime? _overtime;
public DateTime? OVERTIME
{
get{ return _overtime; }
set{ _overtime = value; }
}
}
}