From dfd04433c33dae35f90e651163c992df78ae6472 Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期四, 14 八月 2025 15:52:31 +0800 Subject: [PATCH] feat:开发 --- FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/ImportEnterpriseEmployeesCommand.cs | 29 +++++++++++++++++++++++++++-- 1 files changed, 27 insertions(+), 2 deletions(-) diff --git a/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/ImportEnterpriseEmployeesCommand.cs b/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/ImportEnterpriseEmployeesCommand.cs index 713f542..baa4661 100644 --- a/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/ImportEnterpriseEmployeesCommand.cs +++ b/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/ImportEnterpriseEmployeesCommand.cs @@ -36,13 +36,30 @@ /// <summary> /// 鎵嬫満鍙� /// </summary> - /// <remarks>鑱旂郴鐢佃瘽</remarks> public string ContactPhoneNumber { get; set; } /// <summary> /// 韬唤璇佸彿 /// </summary> public string Identity { get; set; } + + /// <summary> + /// 鐢熸棩 + /// </summary> + [JsonIgnore] + public DateTime? Birthday { get; set; } + + /// <summary> + /// 骞撮緞 + /// </summary> + [JsonIgnore] + public int? Age { get; set; } + + /// <summary> + /// 鎬у埆 + /// </summary> + [JsonIgnore] + public EnumUserGender? Gender { get; set; } } /// <summary> @@ -50,22 +67,30 @@ /// </summary> public class ImportEnterpriseEmployeesCommandResult { + public ImportEnterpriseEmployeesCommandResult() + { + Errors = []; + } + /// <summary> /// 鎬绘暟 /// </summary> public int TotalCount { get; set; } + /// <summary> /// 鎴愬姛鏁伴噺 /// </summary> public int SuccessCount { get; set; } + /// <summary> /// 澶辫触鏁伴噺 /// </summary> public int FailCount { get; set; } + /// <summary> /// 閿欒淇℃伅 /// </summary> - public List<ImportEnterpriseEmployeesCommandResultError> MyProperty { get; set; } + public List<ImportEnterpriseEmployeesCommandResultError> Errors { get; set; } } /// <summary> -- Gitblit v1.9.1