using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// <summary> /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 /// 创 建:超级管理员 /// 日 期:2023-02-14 11:09 /// 描 述:学生报名(官网) /// </summary> public class StuEnrollOfficialEntity { #region 实体成员 /// <summary> /// Id /// </summary> [Column("ID")] public string Id { get; set; } /// <summary> /// 姓名 /// </summary> [Column("STUNAME")] public string StuName { get; set; } /// <summary> /// 性别 /// </summary> [Column("GENDER")] public bool? Gender { get; set; } /// <summary> /// 民族 /// </summary> [Column("NATIONALS")] public string Nationals { get; set; } /// <summary> /// 出生年月 /// </summary> [Column("BIRTHDAY")] public DateTime? Birthday { get; set; } /// <summary> /// 政治面貌 /// </summary> [Column("POLITICAL")] public string Political { get; set; } /// <summary> /// 身份证 /// </summary> [Column("IDCARD")] public string IDCard { get; set; } /// <summary> /// 联系电话 /// </summary> [Column("PHONE")] public string Phone { get; set; } /// <summary> /// 考生科类(文、理)StuSubjectType /// </summary> [Column("SUBJECTTYPE")] public string SubjectType { get; set; } /// <summary> /// 考生类别(农村应届,往届;城市应届\往届)ExamineeType_tlm /// </summary> [Column("STUTYPE")] public string StuType { get; set; } /// <summary> /// 毕业类别(普通高中、中等师范、职业高中、技工学校、其他中等专业学校、中等学历教育毕业)StuGraduateType /// </summary> [Column("GRADUATETYPE")] public string GraduateType { get; set; } /// <summary> /// 应试外语语种(英语\不应试外语;选项之外的语种自行填写)StuEnglish /// </summary> [Column("ENGLISH")] public string English { get; set; } /// <summary> /// 毕业学校 /// </summary> [Column("FROMSCHOOL")] public string FromSchool { get; set; } /// <summary> /// 高考报名省份 /// </summary> [Column("PROVINCE")] public string Province { get; set; } /// <summary> /// 报考专业第一志愿 /// </summary> [Column("MAJORNO")] public string MajorNo { get; set; } /// <summary> /// 报考专业第2志愿 /// </summary> [Column("MAJORNO2")] public string MajorNo2 { get; set; } /// <summary> /// 报考专业第3志愿 /// </summary> [Column("MAJORNO3")] public string MajorNo3 { get; set; } /// <summary> /// 户籍省份 /// </summary> [Column("HOMEPROVINCE")] public string HomeProvince { get; set; } /// <summary> /// 户籍市 /// </summary> [Column("HOMECITY")] public string HomeCity { get; set; } /// <summary> /// 户籍县 /// </summary> [Column("HOMECOUNTY")] public string HomeCounty { get; set; } /// <summary> /// 户籍详细地址 /// </summary> [Column("HOMEADDR")] public string HomeAddr { get; set; } /// <summary> /// 考生号 /// </summary> [Column("STUCODE")] public string StuCode { get; set; } /// <summary> /// 收件人 /// </summary> [Column("RECIPIENT")] public string Recipient { get; set; } /// <summary> /// 接收录取通知书地址 /// </summary> [Column("ACCEPTANCEPROVINCE")] public string AcceptanceProvince { get; set; } /// <summary> /// 接收录取通知书地址 /// </summary> [Column("ACCEPTANCECITY")] public string AcceptanceCity { get; set; } /// <summary> /// 接收录取通知书地址 /// </summary> [Column("ACCEPTANCECOUNTY")] public string AcceptanceCounty { get; set; } /// <summary> /// 接收录取通知书地址 /// </summary> [Column("ACCEPTANCEADDR")] public string AcceptanceAddr { get; set; } /// <summary> /// 邮政编码 /// </summary> [Column("ZIPCODE")] public string ZipCode { get; set; } /// <summary> /// 收件人电话 /// </summary> [Column("RECIPIENTPHONE")] public string RecipientPhone { get; set; } /// <summary> /// 家长电话 /// </summary> [Column("PARENTPHONE")] public string ParentPhone { get; set; } /// <summary> /// 是否服从调剂 /// </summary> [Column("ISADJUST")] public int? IsAdjust { get; set; } /// <summary> /// 创建时间 /// </summary> [Column("CREATETIME")] public DateTime? CreateTime { get; set; } /// <summary> /// 个人照片 /// </summary> [Column("PHOTO")] public string Photo { get; set; } #endregion #region 扩展操作 /// <summary> /// 新增调用 /// </summary> public void Create() { this.Id = Guid.NewGuid().ToString(); this.CreateTime = DateTime.Now; } /// <summary> /// 编辑调用 /// </summary> /// <param name="keyValue"></param> public void Modify(string keyValue) { this.Id = keyValue; } #endregion #region 扩展字段 #endregion } }