From ab8fb517dec439e288ea546cf53373fa2c462d83 Mon Sep 17 00:00:00 2001 From: zhangli <1109134334@qq.com> Date: Wed, 6 Apr 2022 16:14:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E5=85=9A=E5=8A=9E=E6=94=B6?= =?UTF-8?q?=E6=96=87=E3=80=81=E6=A0=A1=E5=8A=9E=E6=94=B6=E6=96=87=20?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=9A=84=E5=8F=91=E8=B5=B7=E4=BA=BA=E5=92=8C?= =?UTF-8?q?=E5=8F=91=E8=B5=B7=E6=97=B6=E9=97=B4=E6=9C=AA=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Dispatch/DispatchEntity.cs | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/Dispatch/DispatchEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/Dispatch/DispatchEntity.cs index 0e359c151..6c06787b5 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/Dispatch/DispatchEntity.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/Dispatch/DispatchEntity.cs @@ -109,6 +109,19 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration /// [Column("READER")] public string Reader { get; set; } + + /// + /// 发起时间 + /// + /// + [Column("CREATETIME")] + public DateTime? CreateTime { get; set; } + /// + /// 发起人 + /// + /// + [Column("CREATEUSER")] + public string CreateUser { get; set; } #endregion #region 扩展操作 @@ -131,19 +144,6 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration #region 扩展字段 [NotMapped] public string Listarray { get; set; } - - /// - /// 发起时间 - /// - /// - [NotMapped] - public DateTime? CreateTime { get; set; } - /// - /// 发起人 - /// - /// - [NotMapped] - public string CreateUser { get; set; } #endregion } }