From a45db417deb2ade6cc3bf6ef2383eaf7167e761d Mon Sep 17 00:00:00 2001 From: zhangqi <2794379662@qq.com> Date: Wed, 28 Apr 2021 10:36:44 +0800 Subject: [PATCH] =?UTF-8?q?update:=E6=B7=BB=E5=8A=A0=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E7=BB=84=E7=BB=87=E6=97=B6=E9=9C=80=E8=A6=81=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=9C=BA=E6=9E=84=E6=89=80=E5=9C=A8=E5=8C=BA=E5=9F=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Api/Ewide.Core/Ewide.Core.csproj | 3 +++ Api/Ewide.Core/Ewide.Core.xml | 10 ++++++++++ Api/Ewide.Core/Service/Org/Dto/OrgInput.cs | 9 +++++++++ 3 files changed, 22 insertions(+) diff --git a/Api/Ewide.Core/Ewide.Core.csproj b/Api/Ewide.Core/Ewide.Core.csproj index 8d77f6d..b69361a 100644 --- a/Api/Ewide.Core/Ewide.Core.csproj +++ b/Api/Ewide.Core/Ewide.Core.csproj @@ -42,6 +42,9 @@ + + PreserveNewest + PreserveNewest diff --git a/Api/Ewide.Core/Ewide.Core.xml b/Api/Ewide.Core/Ewide.Core.xml index d40c60a..1b0ada5 100644 --- a/Api/Ewide.Core/Ewide.Core.xml +++ b/Api/Ewide.Core/Ewide.Core.xml @@ -5579,6 +5579,11 @@ 状态(字典 0正常 1停用 2删除) + + + 机构所在区域 + + 名称 @@ -5589,6 +5594,11 @@ 编码 + + + 机构所在区域 + + 机构Id diff --git a/Api/Ewide.Core/Service/Org/Dto/OrgInput.cs b/Api/Ewide.Core/Service/Org/Dto/OrgInput.cs index a337516..4c48b7f 100644 --- a/Api/Ewide.Core/Service/Org/Dto/OrgInput.cs +++ b/Api/Ewide.Core/Service/Org/Dto/OrgInput.cs @@ -46,6 +46,10 @@ namespace Ewide.Core.Service /// 状态(字典 0正常 1停用 2删除) /// public int Status { get; set; } + /// + /// 机构所在区域 + /// + public virtual string AreaNumberCode { get; set; } } public class AddOrgInput : OrgInput @@ -61,6 +65,11 @@ namespace Ewide.Core.Service /// [Required(ErrorMessage = "机构编码不能为空")] public override string Code { get; set; } + /// + /// 机构所在区域 + /// + [Required(ErrorMessage = "机构所在区域不能为空")] + public override string AreaNumberCode { get; set; } } public class DeleteOrgInput