75 lines
2.9 KiB
C#
75 lines
2.9 KiB
C#
using Furion.DatabaseAccessor;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Ewide.Core
|
|
{
|
|
/// <summary>
|
|
/// 员工附属机构职位表
|
|
/// </summary>
|
|
[Table("sys_emp_ext_org_pos")]
|
|
[Comment("员工附属机构职位表")]
|
|
public class SysEmpExtOrgPos : IEntity, IEntityTypeBuilder<SysEmpExtOrgPos>
|
|
{
|
|
/// <summary>
|
|
/// 员工Id
|
|
/// </summary>
|
|
[Comment("员工Id")]
|
|
[Column("SysEmpId", TypeName = "varchar(36)")]
|
|
public string SysEmpId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 一对一引用(员工)
|
|
/// </summary>
|
|
[XmlIgnore]
|
|
public SysEmp SysEmp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机构Id
|
|
/// </summary>
|
|
[Comment("机构Id")]
|
|
[Column("SysOrgId", TypeName = "varchar(36)")]
|
|
public string SysOrgId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 一对一引用(机构)
|
|
/// </summary>
|
|
[XmlIgnore]
|
|
public SysOrg SysOrg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 职位Id
|
|
/// </summary>
|
|
[Comment("职位Id")]
|
|
[Column("SysPosId", TypeName = "varchar(36)")]
|
|
public string SysPosId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 一对一引用(职位)
|
|
/// </summary>
|
|
[XmlIgnore]
|
|
public SysPos SysPos { get; set; }
|
|
|
|
public void Configure(EntityTypeBuilder<SysEmpExtOrgPos> entityBuilder, DbContext dbContext, Type dbContextLocator)
|
|
{
|
|
entityBuilder.HasKey(c => new { c.SysEmpId, c.SysOrgId, c.SysPosId });
|
|
}
|
|
|
|
//public IEnumerable<SysEmpExtOrgPos> HasData(DbContext dbContext, Type dbContextLocator)
|
|
//{
|
|
// return new[]
|
|
// {
|
|
// new SysEmpExtOrgPos { SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" },
|
|
// new SysEmpExtOrgPos { SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" },
|
|
// new SysEmpExtOrgPos { SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" },
|
|
// new SysEmpExtOrgPos { SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" },
|
|
// new SysEmpExtOrgPos { SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }
|
|
// };
|
|
//}
|
|
}
|
|
}
|