This commit is contained in:
ky_sunl
2021-04-22 13:37:25 +00:00
parent 575a22954f
commit d1c9e5a71e
699 changed files with 1062425 additions and 40640 deletions

View File

@@ -0,0 +1,36 @@
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace Dilon.Core
{
/// <summary>
/// 员工职位表
/// </summary>
[Table("sys_emp_pos")]
[Comment("员工职位表")]
public class SysEmpPos : IEntity
{
/// <summary>
/// 员工Id
/// </summary>
[Comment("员工Id")]
public long SysEmpId { get; set; }
/// <summary>
/// 一对一引用(员工)
/// </summary>
public SysEmp SysEmp { get; set; }
/// <summary>
/// 职位Id
/// </summary>
[Comment("职位Id")]
public long SysPosId { get; set; }
/// <summary>
/// 一对一引用(职位)
/// </summary>
public SysPos SysPos { get; set; }
}
}