This commit is contained in:
Xy
2021-04-23 10:02:36 +00:00
parent c83391cf5a
commit e4c3350726
15 changed files with 58 additions and 35 deletions

View File

@@ -15,7 +15,8 @@ namespace Dilon.Core
/// 员工Id
/// </summary>
[Comment("员工Id")]
public long SysEmpId { get; set; }
[Column("员工Id", TypeName = "varchar(36)")]
public string SysEmpId { get; set; }
/// <summary>
/// 一对一引用(员工)
@@ -26,7 +27,8 @@ namespace Dilon.Core
/// 职位Id
/// </summary>
[Comment("职位Id")]
public long SysPosId { get; set; }
[Column("职位Id", TypeName = "varchar(36)")]
public string SysPosId { get; set; }
/// <summary>
/// 一对一引用(职位)