This commit is contained in:
2021-07-06 15:16:17 +08:00
parent 957d206c2b
commit 7f785d6423
13 changed files with 240 additions and 102 deletions
+25 -1
View File
@@ -27,6 +27,14 @@ namespace Model
set;
}
/// <summary>
/// 工人姓名
/// </summary>
public string personName
{
get;
set;
}
/// <summary>
/// 证件号码
/// </summary>
public string idCardNumber
@@ -35,6 +43,14 @@ namespace Model
set;
}
/// <summary>
/// 性别
/// </summary>
public string gender
{
get;
set;
}
/// <summary>
/// 考勤时间
/// </summary>
public string attendanceTime
@@ -57,6 +73,14 @@ namespace Model
{
get;
set;
}
}
/// <summary>
/// 现场人员可见光照片
/// </summary>
public string headImage
{
get;
set;
}
}
}