using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.PersonnelManagement { /// <summary> /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2020-02-10 10:51 /// 描 述:教职工招聘计划 /// </summary> public class TeacherRecruitPlanEntity { #region 实体成员 /// <summary> /// Id /// </summary> [Column("ID")] public string Id { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("RECRUITTIME")] public DateTime? RecruitTime { get; set; } /// <summary> /// 招聘专业 /// </summary> [Column("RECRUITMAJOR")] public string RecruitMajor { get; set; } /// <summary> /// 招聘单位 /// </summary> [Column("COMMPANY")] public string Commpany { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("DEPARTMENT")] public string Department { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("TITLEOFTECHPOST")] public string TitleOfTechPost { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("EMPSORTNO")] public string EmpSortNo { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("RECRUITNUM")] public int? RecruitNum { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("ACTUALSIZE")] public int? ActualSize { get; set; } /// <summary> /// 年龄 /// </summary> [Column("RECRUITAGE")] public string RecruitAge { get; set; } /// <summary> /// 学位 /// </summary> [Column("RECORDINSCHOOL")] public string RecordInSchool { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("INITIALDEGREE")] public string InitialDegree { get; set; } /// <summary> /// 政治面貌 /// </summary> [Column("PARTYFACENO")] public string PartyFaceNo { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("QUALIFICATION")] public string Qualification { get; set; } /// <summary> /// 专业 /// </summary> [Column("MAJORCATEGORY")] public string MajorCategory { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("TESTTYPE")] public string TestType { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("StaffSize")] public int? StaffSize { get; set; } /// <summary> /// 招聘时间 /// </summary> [Column("Remark")] public string Remark { get; set; } /// <summary> /// 工作地址 /// </summary> [Column("JOBADDRESS")] public string JobAddress { get; set; } #endregion #region 扩展操作 /// <summary> /// 新增调用 /// </summary> public void Create() { this.Id = Guid.NewGuid().ToString(); } /// <summary> /// 编辑调用 /// </summary> /// <param name="keyValue"></param> public void Modify(string keyValue) { this.Id = keyValue; } #endregion #region 扩展字段 #endregion } }