| 123456789101112131415161718192021222324252627 |
- using System;
- namespace System.Common
- {
- /// <summary>
- /// 订单表
- /// </summary>
- [Serializable]
- public partial class UserModel
- {
- public UserModel()
- { }
- #region Model
- public string UserId { set; get; }
- public string UserCode { set; get; }
- public string UserName { set; get; }
- public int RoleId { set; get; }
- public string RoleCode { set; get; }
- public string WxOpenId { set; get; }
-
- #endregion Model
- }
- }
|