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.
57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class JsonUserEntity
|
|
{
|
|
#region 私有成员
|
|
private string _gid;//账户Guid
|
|
private string _codename;//账户代码名
|
|
private string _showname;//账户显示名
|
|
private string _FINANCESOFTCODE;//账户基本属性
|
|
#endregion
|
|
|
|
public JsonUserEntity()
|
|
{
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 账户Guid
|
|
/// </summary>
|
|
public string User1
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 账户代码名
|
|
/// </summary>
|
|
public string User2
|
|
{
|
|
get { return _codename; }
|
|
set { _codename = value; }
|
|
}
|
|
/// <summary>
|
|
/// 账户显示名
|
|
/// </summary>
|
|
public string User3
|
|
{
|
|
get { return _showname; }
|
|
set { _showname = value; }
|
|
}
|
|
/// <summary>
|
|
/// 财务软件代码
|
|
/// </summary>
|
|
public string User4
|
|
{
|
|
get { return _FINANCESOFTCODE; }
|
|
set { _FINANCESOFTCODE = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|