using Learun.Util;
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Learun.Application.TwoDevelopment.EducationalAdministration
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创 建:超级管理员
/// 日 期:2019-11-18 11:36
/// 描 述:教材使用计划
///
public class TMPlanEntity
{
#region 实体成员
///
/// 编号
///
[Column("TMPID")]
public string TMPID { get; set; }
///
/// 名字
///
[Column("TMPNAME")]
public string TMPName { get; set; }
///
/// 时间
///
[Column("TMPTIME")]
public DateTime? TMPTime { get; set; }
#endregion
#region 扩展操作
///
/// 新增调用
///
public void Create()
{
this.TMPID = Guid.NewGuid().ToString();
}
///
/// 编辑调用
///
///
public void Modify(string keyValue)
{
this.TMPID = keyValue;
}
#endregion
#region 扩展字段
#endregion
}
}