1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main1
- {
- public partial class UserDetail
- {
- public int Id { get; set; }
- public string Interests { get; set; }
- public int UpdateMan { get; set; }
- public int AddMan { get; set; }
- public string Note { get; set; }
- public int CardAddAddress { get; set; }
- public DateTime? CardExpireDate { get; set; }
- public int TrafficTool { get; set; }
- public int FamilyIncome { get; set; }
- public int EduLevel { get; set; }
- public DateTime? ToShopDate { get; set; }
- public string PrivatePhone { get; set; }
- public string OfficePhone { get; set; }
- public int UserJob { get; set; }
- public string Email { get; set; }
- public string PostalCode { get; set; }
- public DateTime? Birthday { get; set; }
- }
- }
|