From 79aa83f1981566d5979a3962374489b3f99108f5 Mon Sep 17 00:00:00 2001 From: ndbs Date: Tue, 28 Jun 2022 16:09:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=99=E5=B8=88=E8=AF=81=E4=B9=A6=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=B7=BB=E5=8A=A0=E7=AD=BE=E8=AF=81=E6=9C=BA=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonnelManagement/Views/TeacherCertificate/Form.cshtml | 4 ++++ .../PersonnelManagement/Views/TeacherCertificate/Index.js | 1 + .../TeacherCertificate/TeacherCertificateEntity.cs | 5 +++++ 3 files changed, 10 insertions(+) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Form.cshtml index b28177bcb..d1f963d9f 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Form.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Form.cshtml @@ -19,6 +19,10 @@
资格种类
+
+
签发机关
+ +
任教学科
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Index.js index 33797683a..fea61a031 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/TeacherCertificate/Index.js @@ -171,6 +171,7 @@ var bootstrap = function ($, learun) { }, { label: "证书名称", name: "TCType", width: 150, align: "left" }, { label: "证书编号", name: "TCCode", width: 150, align: "left" }, + { label: "签发机关", name: "TCVisaOffice", width: 150, align: "left" }, { label: "资格种类", name: "TCTypeID", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) { diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherCertificate/TeacherCertificateEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherCertificate/TeacherCertificateEntity.cs index 12fc2d02e..1bf32b1da 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherCertificate/TeacherCertificateEntity.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherCertificate/TeacherCertificateEntity.cs @@ -30,6 +30,11 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement [Column("TCTYPE")] public string TCType { get; set; } /// + /// 证书名称 + /// + [Column("TCVISAOFFICE")] + public string TCVisaOffice { get; set; } + /// /// 资格种类 /// [Column("TCTYPEID")]