From 5587341ac6e50a040972d33d83de632e7d0c87af Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期二, 10 十二月 2024 09:30:36 +0800 Subject: [PATCH] 优化导入 --- Vmo/HStation.Vmo.Xhs.Core/03-scheme/XhsSchemeVmo.cs | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Vmo/HStation.Vmo.Xhs.Core/03-scheme/XhsSchemeVmo.cs b/Vmo/HStation.Vmo.Xhs.Core/03-scheme/XhsSchemeVmo.cs index 6b2a91c..3992cae 100644 --- a/Vmo/HStation.Vmo.Xhs.Core/03-scheme/XhsSchemeVmo.cs +++ b/Vmo/HStation.Vmo.Xhs.Core/03-scheme/XhsSchemeVmo.cs @@ -1,4 +1,6 @@ -锘縩amespace HStation.Vmo +锘縰sing System.ComponentModel.DataAnnotations; + +namespace HStation.Vmo { /// <summary> /// @@ -19,7 +21,8 @@ this.SiteID = rhs.SiteID; this.NO = rhs.NO; this.Name = rhs.Name; - this.SchemeType = rhs.SchemeType; + this.ChangeTypes = rhs.ChangeTypes; + this.AllowCustom = rhs.AllowCustom; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.UseStatus = rhs.UseStatus; @@ -48,9 +51,14 @@ public string Name { get; set; } /// <summary> - /// 鏂规绫诲瀷 + /// 鍙樻洿绫诲瀷 /// </summary> - public HStation.Xhs.eSchemeType SchemeType { get; set; } + public List<string> ChangeTypes { get; set; } + + /// <summary> + /// 鑷畾涔� + /// </summary> + public bool AllowCustom { get; set; } /// <summary> /// 鍙傛暟 -- Gitblit v1.9.3