UserDetail.cs 904 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.KxsMain
  4. {
  5. public partial class UserDetail
  6. {
  7. public int Id { get; set; }
  8. public string Interests { get; set; }
  9. public int UpdateMan { get; set; }
  10. public int AddMan { get; set; }
  11. public string Note { get; set; }
  12. public int CardAddAddress { get; set; }
  13. public DateTime? CardExpireDate { get; set; }
  14. public int TrafficTool { get; set; }
  15. public int FamilyIncome { get; set; }
  16. public int EduLevel { get; set; }
  17. public DateTime? ToShopDate { get; set; }
  18. public string PrivatePhone { get; set; }
  19. public string OfficePhone { get; set; }
  20. public int UserJob { get; set; }
  21. public string Email { get; set; }
  22. public string PostalCode { get; set; }
  23. public DateTime? Birthday { get; set; }
  24. }
  25. }