SimpleUserInfoModel.cs 572 B

12345678910111213141516171819202122232425
  1. using CZFW.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace CZFW.Framework.Model.ViewModel
  9. {
  10. public class SimpleUserInfoModel:ModelBase
  11. {
  12. [Display(Name="用户名")]
  13. public string UserName { get; set; }
  14. [Display(Name="姓名")]
  15. public string Name { get; set; }
  16. [Display(Name="账号状态")]
  17. public int State { get; set; }
  18. public string Avatar { get; set; }
  19. }
  20. }