namespace Lottomat.Application.Entity.WebApp { /// /// 版 本 /// Copyright (c) 2016-2017 /// 创建人:赵轶 /// 日 期:2016.06.07 10:58 /// 描 述:用户管理(手机端接口使用) /// public class appUserInfoModel { #region 实体成员 /// /// 用户主键 /// public string UserId { get; set; } /// /// 登录账户 /// public string Account { get; set; } /// /// 真实姓名 /// public string RealName { get; set; } /// /// 机构主键 /// public string OrganizeId { get; set; } /// /// 部门主键 /// public string DepartmentId { get; set; } #endregion } }