using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DSWeb.Models { public class InfoClientContractEntity { /// /// 构造函数 /// public InfoClientContractEntity() { } #region 读写属性 private string _gid = Guid.NewGuid().ToString(); /// /// 惟一编号 /// public string GID { get { return _gid; } set { _gid = value; } } private string _linkid = ""; /// /// 客户关联id /// public string LINKID { get { return _linkid; } set { _linkid = value; } } private string _contractno = ""; /// /// 合同号 /// public string CONTRACTNO { get { return _contractno; } set { _contractno = value; } } private DateTime _signingdate; /// /// 签订日期 /// public DateTime SIGNINGDATE { get { return _signingdate; } set { _signingdate = value; } } private DateTime _startdate; /// /// 起始日期 /// public DateTime STARTDATE { get { return _startdate; } set { _startdate = value; } } private DateTime _canceldate; /// /// 截止日期 /// public DateTime CANCELDATE { get { return _canceldate; } set { _canceldate = value; } } private string _chief = ""; /// /// (本)负责人 /// public string CHIEF { get { return _chief; } set { _chief = value; } } private string _remark = ""; /// /// 备注 /// public string REMARK { get { return _remark; } set { _remark = value; } } private string _corpid = ""; /// /// 所属分公司代码 /// public string CORPID { get { return _corpid; } set { _corpid = value; } } private string _deptgid = ""; /// /// 所属部门代码 /// public string DEPTGID { get { return _deptgid; } set { _deptgid = value; } } private string _createuser = ""; /// /// 创建人 /// public string CREATEUSER { get { return _createuser; } set { _createuser = value; } } private DateTime _createtime; /// /// 创建时间 /// public DateTime CREATETIME { get { return _createtime; } set { _createtime = value; } } private string _modifieduser = ""; /// /// 最后一次操作人 /// public string MODIFIEDUSER { get { return _modifieduser; } set { _modifieduser = value; } } private DateTime _modifiedtime; /// /// 最后一次操作时间 /// public DateTime MODIFIEDTIME { get { return _modifiedtime; } set { _modifiedtime = value; } } #endregion } }