Files
SGGL_SHJ/SGGL/Model/HSSE/PersonInOutRecordInput.cs
T
lpf 403ae1921b 人员查询接口改用项目代号作为必填参数
- 在 ProjectPersonInput/Output 和 PersonInOutRecordInput 模型中添加 ProjectCode 属性
  - GetProjectPerson 和 GetPersonInOutRecord 接口必填参数改为 ProjectCode
  - APIPersonService 添加项目代号过滤逻辑和查询结果输出
2026-01-28 15:18:10 +08:00

40 lines
964 B
C#

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 ProjectName { get; set; }
/// <summary>
/// 项目代号
/// </summary>
public string ProjectCode { get; set; }
/// <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; }
}
}