工作流

UserAccountInput.cs 954B

12345678910111213141516171819202122232425262728293031323334
  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 UserAccountListInput : PageInput
  11. {
  12. public string usercode { get; set; }
  13. public string username { get; set; }
  14. public string deptid { get; set; }
  15. }
  16. /// <summary>
  17. /// 新增编辑输入
  18. /// </summary>
  19. public class UserAccountAddEditInput
  20. {
  21. public int UserId { get; set; } = 0;
  22. public string Usercode { get; set; }
  23. public string Username { get; set; }
  24. public string Password { get; set; }
  25. public int? DeptId { get; set; } = 0;
  26. public int? RoleId { get; set; } = 0;
  27. public string Mobile { get; set; }
  28. public string Telephone { get; set; }
  29. public DateTime? Birthday { get; set; }
  30. public string Remark { get; set; }
  31. }
  32. }