| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewUserHobbyInfo
- {
- public string Id { get; set; }
- public string Mobile { get; set; }
- public string Password { get; set; }
- public string Name { get; set; }
- public string NickName { get; set; }
- public string Gender { get; set; }
- public string Email { get; set; }
- public Nullable<System.DateTime> Birthday { get; set; }
- public string CityNo { get; set; }
- public string GraduationYear { get; set; }
- public string ContactAddress { get; set; }
- public string HomeAddress { get; set; }
- public string Workunit { get; set; }
- public string WeChat { get; set; }
- public string QQ { get; set; }
- public string Mobile2 { get; set; }
- public string DetaileInfo { get; set; }
- public string IsAudited { get; set; }
- public string IsPublic { get; set; }
- public string IsLocked { get; set; }
- public string Vip { get; set; }
- public Nullable<System.DateTime> TimeCreate { get; set; }
- public Nullable<System.DateTime> TimeModify { get; set; }
- public string Remark { get; set; }
- public string HobbyNo { get; set; }
- public string HobbyName { get; set; }
- public string HobbyType { get; set; }
- }
- }
|