using System; using System.Data; namespace DSWeb.Models { /// /// 公司部门信息表 /// public class SysDeptEntity { #region 私有成员 private string _GID;//惟一编号 private string _LINKID;//部门关联id private string _DEPTNO;//代码 private string _DEPTNAME;//名称 private string _MANAGE1;//经理 private string _MANAGE2;//副经理 private string _REMARK;//备注 private string _CREATEUSER;//创建人GID private DateTime _CREATETIME;//创建时间 private string _MODIFIEDUSER;//最后一次更新操作人GID private DateTime _MODIFIEDTIME;//最后一次更新操作时间 #endregion public SysDeptEntity() { } #region 读写属性 /// /// 部门GID /// public string GID { get { return _GID; } set { _GID = value; } } /// /// 部门关联GID /// public string LINKID { get { return _LINKID; } set { _LINKID = value; } } /// /// 部门代码 /// public string DEPTNO { get { return _DEPTNO; } set { _DEPTNO = value; } } /// /// 部门名称 /// public string DEPTNAME { get { return _DEPTNAME; } set { _DEPTNAME = value; } } /// /// 部门经理 /// public string MANAGE1 { get { return _MANAGE1; } set { _MANAGE1 = value; } } /// /// 部门副经理 /// public string MANAGE2 { get { return _MANAGE2; } set { _MANAGE2 = value; } } /// /// 备注 /// public string REMARK { get { return _REMARK; } set { _REMARK = value; } } /// /// 创建人GID /// public string CREATEUSER { get { return _CREATEUSER; } set { _CREATEUSER = value; } } /// /// 创建时间 /// public DateTime CREATETIME { get { return _CREATETIME; } set { _CREATETIME = value; } } /// /// 最后一次更改操作人GID /// public string MODIFIEDUSER { get { return _MODIFIEDUSER; } set { _MODIFIEDUSER = value; } } /// /// 最后一次更新操作时间 /// public DateTime MODIFIEDTIME { get { return _MODIFIEDTIME; } set { _MODIFIEDTIME = value; } } #endregion } }