using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //Info_Client_ACCDATE public class Info_Client_ACCDATE { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// LINKGID /// private string _linkgid; public string LINKGID { get{ return _linkgid; } set{ _linkgid = value; } } /// /// BGNDATE /// private DateTime? _bgndate; public DateTime? BGNDATE { get{ return _bgndate; } set{ _bgndate = value; } } /// /// ENDDATE /// private DateTime? _enddate; public DateTime? ENDDATE { get{ return _enddate; } set{ _enddate = value; } } /// /// OPLBNAME /// private string _oplbname; public string OPLBNAME { get{ return _oplbname; } set{ _oplbname = value; } } /// /// SALE /// private string _sale; public string SALE { get{ return _sale; } set{ _sale = value; } } /// /// ACCTYPE /// private string _acctype; public string ACCTYPE { get{ return _acctype; } set{ _acctype = value; } } /// /// ACCSTARTDATE /// private string _accstartdate; public string ACCSTARTDATE { get{ return _accstartdate; } set{ _accstartdate = value; } } /// /// ACCMONTH /// private int? _accmonth; public int? ACCMONTH { get{ return _accmonth; } set{ _accmonth = value; } } /// /// ACCDAYS /// private int? _accdays; public int? ACCDAYS { get{ return _accdays; } set{ _accdays = value; } } /// /// ALLOWAMOUNT /// private decimal? _allowamount; public decimal? ALLOWAMOUNT { get{ return _allowamount; } set{ _allowamount = value; } } /// /// MODIFIEDUSER /// private string _modifieduser; public string MODIFIEDUSER { get{ return _modifieduser; } set{ _modifieduser = value; } } /// /// MODIFIEDTIME /// private string _modifiedtime; public string MODIFIEDTIME { get{ return _modifiedtime; } set{ _modifiedtime = value; } } /// /// REMARK /// private string _remark; public string REMARK { get{ return _remark; } set{ _remark = value; } } } }