This commit is contained in:
2021-06-30 16:00:32 +08:00
parent 8bc3189f9f
commit 957d206c2b
8 changed files with 209 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
/// <summary>
/// 项目出入记录-潮州华赢
/// </summary>
public class attendanceItems
{
/// <summary>
/// ID
/// </summary>
public List<attendanceItem> records
{
get;
set;
}
}
}