县级监管平台

UserAccountInput.cs 996B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CallCenterApi.Interface.Models.Input
  6. {
  7. public class UserAccountInput
  8. {
  9. public int UserId { get; set; } = 0;
  10. public string Usercode { get; set; }
  11. public string Username { get; set; }
  12. public string Password { get; set; }
  13. //public string Extno { get; set; }
  14. public string WorkNumber { get; set; }
  15. public int DeptId { get; set; } = 0;
  16. public int RoleId { get; set; } = 0;
  17. public int? ClassId { get; set; } = 0;
  18. //public int GroupId { get; set; } = 0;
  19. public bool IsSeat { get; set; } = false;
  20. public string SearRight { get; set; }
  21. public string Sex { get; set; }
  22. public string Mobile { get; set; }
  23. public string Telphone { get; set; }
  24. public DateTime? Birth { get; set; }
  25. //public int? HjType { get; set; }
  26. public string Remark { get; set; }
  27. }
  28. }