From 53af63c61c1e9a1616594db8bb80534ba7634fb9 Mon Sep 17 00:00:00 2001 From: yibo <361071264@qq.com> Date: Mon, 26 Feb 2018 15:29:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=A0=E7=94=A8=E6=88=B7=E7=AE=80=E7=A7=B0?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- B3ClientService/BO/SyncBO/MinWPF_User.cs | 2 ++ B3ClientService/Tasks/SyncInfoFromServer.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/B3ClientService/BO/SyncBO/MinWPF_User.cs b/B3ClientService/BO/SyncBO/MinWPF_User.cs index 3db8852..25af1af 100644 --- a/B3ClientService/BO/SyncBO/MinWPF_User.cs +++ b/B3ClientService/BO/SyncBO/MinWPF_User.cs @@ -28,5 +28,7 @@ namespace BWP.B3ClientService.BO public byte[] Password { get; set; } public string RoleSchema { get; set; } + + public string Spell { get; set; } } } diff --git a/B3ClientService/Tasks/SyncInfoFromServer.cs b/B3ClientService/Tasks/SyncInfoFromServer.cs index 8ed730f..9af40be 100644 --- a/B3ClientService/Tasks/SyncInfoFromServer.cs +++ b/B3ClientService/Tasks/SyncInfoFromServer.cs @@ -198,6 +198,7 @@ namespace BWP.B3ClientService.Tasks entity.Name = o.Get("Name"); entity.Stopped = o.Get("Stopped"); entity.Password = o.Get("Password"); + entity.Spell = o.Get("Spell"); entity.RoleSchema = "default";//o.Get("RoleSchema"); context.Session.Insert(entity); }