工作流

UserAccountView.cs 640B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace WorkFlowApi.ViewModels
  6. {
  7. /// <summary>
  8. /// 用户列表
  9. /// </summary>
  10. public class UserAccountListView
  11. {
  12. public int UserId { get; set; } = 0;
  13. public string Usercode { get; set; }
  14. public string Username { get; set; }
  15. public int DeptId { get; set; } = 0;
  16. public int RoleId { get; set; } = 0;
  17. public string SexFlag { get; set; }
  18. public string Mobile { get; set; }
  19. public string Telephone { get; set; }
  20. public DateTime? CreateTime { set; get; }
  21. }
  22. }