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