增加考勤对接需要人员接口和考勤记录接口

This commit is contained in:
2025-12-24 16:27:07 +08:00
parent 26b921cab2
commit 8ccc25e074
6 changed files with 289 additions and 50 deletions
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 人员出入记录入参
/// </summary>
public class PersonInOutRecordInput
{
/// <summary>
/// 单位名称
/// </summary>
public string UnitName { get; set; }
/// <summary>
/// 人员姓名
/// </summary>
public string PersonName { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime EndTime { get; set; }
}
}