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-06-14 10:24 /// 描 述:教师考勤 /// public class Teach_attendanceEntity { #region 实体成员 /// /// ID /// [Column("ID")] public string ID { get; set; } /// /// 打卡时间 /// [Column("CLOCKTIME")] public DateTime? ClockTime { get; set; } /// /// 打卡地点 /// [Column("CLOCKPLACE")] public string ClockPlace { get; set; } /// /// 教师编号 /// [Column("EMPNO")] public string EmpNo { get; set; } /// /// 教师姓名 /// [Column("EMPNAME")] public string EmpName { get; set; } /// /// 备注 /// [Column("REMARK")] public string Remark { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.ID = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.ID = keyValue; } #endregion #region 扩展字段 #endregion } }