using Learun.Util;
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Learun.Application.TwoDevelopment.LogisticsManagement
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创 建:超级管理员
/// 日 期:2020-05-19 13:38
/// 描 述:参军意向管理
///
public class MSRIntentionManagementEntity
{
#region 实体成员
///
/// 编号
///
[Column("ID")]
public string ID { get; set; }
///
/// 系
///
[Column("DEPTNO")]
public string DeptNo { get; set; }
///
/// 专业
///
[Column("MAJORNO")]
public string MajorNo { get; set; }
///
/// 班级
///
[Column("CLASSNO")]
public string ClassNo { get; set; }
///
/// 学生
///
[Column("STUNO")]
public string StuNo { get; set; }
///
/// 联系方式
///
[Column("MOBILE")]
public string Mobile { get; set; }
///
/// 年龄
///
[Column("AGE")]
public string Age { get; set; }
///
/// 身高
///
[Column("HIGH")]
public string High { get; set; }
///
/// 体重
///
[Column("WEIGHT")]
public string Weight { get; set; }
///
/// 视力
///
[Column("VISION")]
public string Vision { get; set; }
///
/// 添加时间
///
[Column("F_CREATEDATE")]
public DateTime? F_CreateDate { get; set; }
///
/// 添加人
///
[Column("F_CREATEUSERID")]
public string F_CreateUserId { get; set; }
#endregion
#region 扩展操作
///
/// 新增调用
///
public void Create()
{
this.ID = Guid.NewGuid().ToString();
this.F_CreateDate = DateTime.Now;
UserInfo userInfo = LoginUserInfo.Get();
this.F_CreateUserId = userInfo.userId;
}
///
/// 编辑调用
///
///
public void Modify(string keyValue)
{
this.ID = keyValue;
}
#endregion
#region 扩展字段
#endregion
}
}