You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Models/SysDeptEntity.cs

130 lines
3.3 KiB
C#

2 years ago
using System;
using System.Data;
namespace DSWeb.Models
{
/// <summary>
/// 公司部门信息表
/// </summary>
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;//最后一次更新操作时间
private string _FINANCESOFTCODE;//财务软件代码
#endregion
public SysDeptEntity()
{
}
#region 读写属性
/// <summary>
/// 部门GID
/// </summary>
public string GID
{
get { return _GID; }
set { _GID = value; }
}
/// <summary>
/// 部门关联GID
/// </summary>
public string LINKID
{
get { return _LINKID; }
set { _LINKID = value; }
}
/// <summary>
/// 部门代码
/// </summary>
public string DEPTNO
{
get { return _DEPTNO; }
set { _DEPTNO = value; }
}
/// <summary>
/// 部门名称
/// </summary>
public string DEPTNAME
{
get { return _DEPTNAME; }
set { _DEPTNAME = value; }
}
/// <summary>
/// 部门经理
/// </summary>
public string MANAGE1
{
get { return _MANAGE1; }
set { _MANAGE1 = value; }
}
/// <summary>
/// 部门副经理
/// </summary>
public string MANAGE2
{
get { return _MANAGE2; }
set { _MANAGE2 = value; }
}
/// <summary>
/// 备注
/// </summary>
public string REMARK
{
get { return _REMARK; }
set { _REMARK = value; }
}
/// <summary>
/// 创建人GID
/// </summary>
public string CREATEUSER
{
get { return _CREATEUSER; }
set { _CREATEUSER = value; }
}
/// <summary>
/// 创建时间
/// </summary>
public DateTime CREATETIME
{
get { return _CREATETIME; }
set { _CREATETIME = value; }
}
/// <summary>
/// 最后一次更改操作人GID
/// </summary>
public string MODIFIEDUSER
{
get { return _MODIFIEDUSER; }
set { _MODIFIEDUSER = value; }
}
/// <summary>
/// 最后一次更新操作时间
/// </summary>
public DateTime MODIFIEDTIME
{
get { return _MODIFIEDTIME; }
set { _MODIFIEDTIME = value; }
}
/// <summary>
/// 财务软件代码
/// </summary>
public string FINANCESOFTCODE
{
get { return _FINANCESOFTCODE; }
set { _FINANCESOFTCODE = value; }
}
#endregion
}
}