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.

37 lines
856 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
/// <summary>
/// 用户简单实体封装
/// </summary>
[Serializable]
public class SimplePstUser
{
/// <summary>
/// 用户ID
/// </summary>
public int UID { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string UName { get; set; }
/// <summary>
/// 用户密码
/// </summary>
public string UPwd { get; set; }
/// <summary>
/// 用户类型
/// </summary>
public string URoleName { get; set; }
/// <summary>
/// 用户类型ID
/// </summary>
public int URoleID { get; set; }
}
}