using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// <summary> /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 /// 创 建:超级管理员 /// 日 期:2021-03-26 15:23 /// 描 述:学生违纪管理 /// </summary> public class StuDisciplineManagementEntity { #region 实体成员 /// <summary> /// Id /// </summary> [Column("ID")] public string Id { get; set; } /// <summary> /// 违纪学生 /// </summary> [Column("STUNO")] public string StuNo { get; set; } /// <summary> /// 违纪时间 /// </summary> [Column("DISCIPLINETIME")] public DateTime? DisciplineTime { get; set; } /// <summary> /// 处理老师 /// </summary> [Column("EMPNO")] public string EmpNo { get; set; } /// <summary> /// 处理时间 /// </summary> [Column("DEALTIME")] public DateTime? DealTime { get; set; } /// <summary> /// 事情经过 /// </summary> [Column("THINGS")] public string Things { get; set; } /// <summary> /// 学生态度 /// </summary> [Column("STUDENTATTITUDE")] public string StudentAttitude { get; set; } /// <summary> /// 班主任意见 /// </summary> [Column("TEACHEROPINION")] public string TeacherOpinion { get; set; } /// <summary> /// 家长意见 /// </summary> [Column("PARENTSOPINION")] public string ParentsOpinion { get; set; } /// <summary> /// 创建用户 /// </summary> [Column("CREATEUSERID")] public string CreateUserId { get; set; } /// <summary> /// 创建时间 /// </summary> [Column("CREATETIME")] public DateTime? CreateTime { get; set; } /// <summary> /// 审核状态 /// </summary> [Column("CHECKSTATUS")] public string CheckStatus { get; set; } /// <summary> /// 审核备注 /// </summary> [Column("CHECKREMARK")] public string CheckRemark { get; set; } /// <summary> /// 审核人 /// </summary> [Column("CHECKUSERID")] public string CheckUserId { get; set; } /// <summary> /// 审核时间 /// </summary> [Column("CHECKTIME")] public DateTime? CheckTime { get; set; } /// <summary> /// 流程Id /// </summary> [Column("PROCESSID")] public string ProcessId { get; set; } /// <summary> /// 学校意见 /// </summary> [Column("SCHOOLOPINION")] public string SchoolOpinion { get; set; } /// <summary> /// 类型 /// </summary> [Column("STYPE")] public string SType { 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 扩展字段 [NotMapped] public bool? GenderNo { get; set; } [NotMapped] public string StuName { get; set; } [NotMapped] public string DeptNo { get; set; } [NotMapped] public string majorno { get; set; } [NotMapped] public string classno { get; set; } [NotMapped] public string Mobile { get; set; } #endregion } }