人员查询接口改用项目代号作为必填参数

- 在 ProjectPersonInput/Output 和 PersonInOutRecordInput 模型中添加 ProjectCode 属性
  - GetProjectPerson 和 GetPersonInOutRecord 接口必填参数改为 ProjectCode
  - APIPersonService 添加项目代号过滤逻辑和查询结果输出
This commit is contained in:
2026-01-28 15:18:10 +08:00
parent f1224ea194
commit 403ae1921b
6 changed files with 32 additions and 10 deletions
+4
View File
@@ -40,6 +40,10 @@ namespace Model
/// </summary>
public string ProjectName { get; set; }
/// <summary>
/// 项目代号
/// </summary>
public string ProjectCode { get; set; }
/// <summary>
/// 单位名称
/// </summary>
public string UnitName { get; set; }