You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/IoTCenter/NeiMengWuHai/Person.cs

63 lines
2.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}