CustomerInfoEntity.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using CZFW.Framework.Model.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Text;
  6. namespace CZKJ.GBRS2.Entity
  7. {
  8. [Table("gbrs2_customerinfo")]
  9. public class CustomerInfoEntity:EntityBase
  10. {
  11. public string User_id { get; set; }
  12. public string Type { get; set; }
  13. public string Channel { get; set; }
  14. public string Job_number { get; set; }
  15. public string Lock_flag { get; set; }
  16. public string Email { get; set; }
  17. public string Mobile { get; set; }
  18. public string Nickname { get; set; }
  19. public string Head_url { get; set; }
  20. public string Wx_open_id { get; set; }
  21. public string Wx_union_id { get; set; }
  22. public string Core_customer_code { get; set; }
  23. public string Department { get; set; }
  24. public string On_job { get; set; }
  25. public string Out_user_id { get; set; }
  26. public string Gender { get; set; }
  27. public string Id_type { get; set; }
  28. public string Id_no { get; set; }
  29. public string Name { get; set; }
  30. public string Birthday { get; set; }
  31. public DateTime LastLoginTime { get; set; }
  32. }
  33. }