Person.cs
1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using FreeSql.DataAnnotations;
using System.ComponentModel.DataAnnotations;
namespace HHECS.WorkHourStatistics.Dtos
{
/// <summary>
/// 人员信息
/// </summary>
public class Person
{
/// <summary>
/// 主键
/// </summary>
[Key]
[Column(IsPrimary = true)]
public string Id { get; set; } = null!;
/// <summary>
/// 状态
/// </summary>
public string InvitedState { get; set; } = null!;
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; } = null!;
/// <summary>
/// 工号
/// </summary>
public string Number { get; set; } = null!;
/// <summary>
/// 部门路径
/// </summary>
public string Virtual_departmentPath { get; set; } = null!;
/// <summary>
/// 职位Id
/// </summary>
public string JobId { get; set; } = null!;
/// <summary>
/// 职位名称
/// </summary>
public string JobName { get; set; } = null!;
}
}