足力健后端,使用.netcore版本,合并1个项目使用

UserModel.cs 442B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace System.Common
  3. {
  4. /// <summary>
  5. /// 订单表
  6. /// </summary>
  7. [Serializable]
  8. public partial class UserModel
  9. {
  10. public UserModel()
  11. { }
  12. #region Model
  13. public string UserId { set; get; }
  14. public string UserCode { set; get; }
  15. public string UserName { set; get; }
  16. public int RoleId { set; get; }
  17. public string RoleCode { set; get; }
  18. public string WxOpenId { set; get; }
  19. #endregion Model
  20. }
  21. }