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.
|
- 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("RECRUITADDRESS")]
- public string RecruitAddress { get; set; }
- /// <summary>
- /// 招聘人数
- /// </summary>
- [Column("RECRUITNUM")]
- public int? RecruitNum { get; set; }
- /// <summary>
- /// 招聘专业
- /// </summary>
- [Column("RECRUITMAJOR")]
- public string RecruitMajor { get; set; }
- /// <summary>
- /// 要求
- /// </summary>
- [Column("REQUEST")]
- public string Request { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [Column("REMARK")]
- public string Remark { 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
- }
- }
|