|
|
using System;
|
|
|
|
|
|
namespace IoTCenter.NeiMengWuHai
|
|
|
{
|
|
|
public class Person
|
|
|
{
|
|
|
public int Id { get; set; }
|
|
|
public bool IsUsed { get; set; }
|
|
|
public string RealName { get; set; }
|
|
|
|
|
|
public string Sex { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 学校/教育局ID
|
|
|
/// </summary>
|
|
|
public int BureauId { get; set; }
|
|
|
|
|
|
public int OrganId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 身份ID,对应t_sys_identity表的主键IDENTITY_ID
|
|
|
/// </summary>
|
|
|
public int IdentityId { get; set; }
|
|
|
|
|
|
public string IdNumber { get; set; }
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 区(县)ID
|
|
|
/// </summary>
|
|
|
public int AreaId { get; set; }
|
|
|
|
|
|
public DateTime CreateAt { get; set; }
|
|
|
public string Nation { get; set; }
|
|
|
public string NativePlace { get; set; }
|
|
|
public DateTime? Birthday { get; set; }
|
|
|
public int? Nationality { get; set; }
|
|
|
public int? UserType { get; set; }
|
|
|
public int? PostType { get; set; }
|
|
|
public int MaritalStatus { get; set; }
|
|
|
public DateTime? WorkingTime { get; set; }
|
|
|
public string WorkingPlace { get; set; }
|
|
|
public int? Politics { get; set; }
|
|
|
public int? MaxTitle { get; set; }
|
|
|
public int? MaxDegree { get; set; }
|
|
|
public string MaxMajor { get; set; }
|
|
|
public string MainTeachPeriod { get; set; }
|
|
|
public string MainTeachSubject { get; set; }
|
|
|
public string AddressDetails { get; set; }
|
|
|
public int? FirstEducation { get; set; }
|
|
|
public string FirstGraduateSchool { get; set; }
|
|
|
public string FirstMajor { get; set; }
|
|
|
public int? MaxEducation { get; set; }
|
|
|
public string Email { get; set; }
|
|
|
public string Position { get; set; }
|
|
|
public string MaxEducationSchool { get; set; }
|
|
|
public string MaxDegreeSchool { get; set; }
|
|
|
public string CommunistPartyMessage { get; set; }
|
|
|
public string DemocraticPartyMessage { get; set; }
|
|
|
public string YouthPartyMessage { get; set; }
|
|
|
|
|
|
}
|
|
|
} |