From a2a2661044240394f8c4f34a7258a5c55fbbd123 Mon Sep 17 00:00:00 2001 From: dyy <807692433@qq.com> Date: Thu, 5 Sep 2024 16:50:44 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E8=A5=BF?= =?UTF-8?q?=E6=98=8C=E6=95=B0=E6=8D=AE=E4=B8=AD=E5=BF=83=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E5=AD=A6=E7=94=9F=EF=BC=9A=E5=A2=9E=E5=8A=A0=E8=80=83=E7=94=9F?= =?UTF-8?q?=E5=8F=B7=E5=90=8C=E6=AD=A5=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalSchoolApi/Controllers/YKTTrabs.cs | 11 +++++++++++ DigitalSchoolApi/Models/XCStudentEntity.cs | 1 + 2 files changed, 12 insertions(+) diff --git a/DigitalSchoolApi/Controllers/YKTTrabs.cs b/DigitalSchoolApi/Controllers/YKTTrabs.cs index 8b1a6fc..d3ad63b 100644 --- a/DigitalSchoolApi/Controllers/YKTTrabs.cs +++ b/DigitalSchoolApi/Controllers/YKTTrabs.cs @@ -1942,6 +1942,11 @@ namespace DigitalSchoolApi.Controllers { sb.Append($" ClassNo='{item.CLASS_ID}',"); } + //考生号 + if (!string.IsNullOrEmpty(item.KSH)) + { + sb.Append($" ksh='{item.KSH}',"); + } if (!string.IsNullOrEmpty(item.FORMER_NAME)) { sb.Append($" FORMER_NAME='{item.FORMER_NAME}',"); @@ -2089,6 +2094,12 @@ namespace DigitalSchoolApi.Controllers fieleSb.Append("ClassNo,"); sb.Append($" '{xsxx.CLASS_ID}',"); } + //考生号 + if (!string.IsNullOrEmpty(xsxx.KSH)) + { + fieleSb.Append("ksh,"); + sb.Append($" '{xsxx.KSH}',"); + } if (!string.IsNullOrEmpty(xsxx.PINYIN)) { fieleSb.Append("SpellFull,"); diff --git a/DigitalSchoolApi/Models/XCStudentEntity.cs b/DigitalSchoolApi/Models/XCStudentEntity.cs index 2cfc08f..d27afa8 100644 --- a/DigitalSchoolApi/Models/XCStudentEntity.cs +++ b/DigitalSchoolApi/Models/XCStudentEntity.cs @@ -932,6 +932,7 @@ namespace DigitalSchoolApi.Models public string STU_STATE_CODE { get; set; } public string STU_ROLL_CODE { get; set; } public string IS_NORMAL { get; set; } + public string KSH { get; set; } } public class V_Dept