Update Xml with CS

This commit is contained in:
2021-05-11 17:59:27 +08:00
parent 982b79bbb0
commit fc3f3bec48
24 changed files with 310 additions and 470 deletions

View File

@@ -1,6 +1,7 @@
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using System.Xml.Serialization;
namespace Ewide.Core
{
@@ -21,6 +22,7 @@ namespace Ewide.Core
/// <summary>
/// 一对一引用(系统用户)
/// </summary>
[XmlIgnore]
public SysUser SysUser { get; set; }
/// <summary>
@@ -33,6 +35,7 @@ namespace Ewide.Core
/// <summary>
/// 一对一引用(系统机构)
/// </summary>
[XmlIgnore]
public SysOrg SysOrg { get; set; }
}
}