KxsGdOpenInfo.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsGdOpenInfo
  6. {
  7. public int Id { get; set; }
  8. public string JobId { get; set; }
  9. public string JobStatus { get; set; }
  10. public string OprName { get; set; }
  11. public string Mobile { get; set; }
  12. public string IdNo { get; set; }
  13. public string Gender { get; set; }
  14. public string Role { get; set; }
  15. public string ChannelCode { get; set; }
  16. public string ChannelName { get; set; }
  17. public string ProvincialCompany { get; set; }
  18. public string InviteCode { get; set; }
  19. public string OpenTime { get; set; }
  20. public int UserId { get; set; }
  21. public string BrhId { get; set; }
  22. public string BrhName { get; set; }
  23. public int Version { get; set; }
  24. public string DelFlag { get; set; }
  25. public DateTime? UpdateTime { get; set; }
  26. public DateTime? CreateTime { get; set; }
  27. }
  28. }