From 6684b5fe77d79a8f8fcc58195e6f1d87301079a1 Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期五, 15 八月 2025 15:56:06 +0800 Subject: [PATCH] fix:bug --- FlexJobApi.Core/Entities/UserServer/Users/User.cs | 22 +++++++++++++++++++--- 1 files changed, 19 insertions(+), 3 deletions(-) diff --git a/FlexJobApi.Core/Entities/UserServer/Users/User.cs b/FlexJobApi.Core/Entities/UserServer/Users/User.cs index 4c9a299..b2b384d 100644 --- a/FlexJobApi.Core/Entities/UserServer/Users/User.cs +++ b/FlexJobApi.Core/Entities/UserServer/Users/User.cs @@ -23,7 +23,8 @@ UserExpectJobs = []; UserCredentials = []; Photos = []; - TaskInfoUsers = []; + EnterpriseEmployees = []; + EnterpriseUserCollects = []; } /// <summary> @@ -250,9 +251,24 @@ public List<UserPhoto> Photos { get; set; } /// <summary> - /// 浠诲姟闆囦剑淇℃伅 + /// 鐏靛伐 /// </summary> - public List<TaskInfoUser> TaskInfoUsers { get; set; } + public List<EnterpriseEmployee> EnterpriseEmployees { get; set; } + + /// <summary> + /// 璋佸浼佷笟鏀惰棌/鑱旂郴鎴� + /// </summary> + public List<EnterpriseUserCollect> EnterpriseUserCollects { get; set; } + + /// <summary> + /// 鏁版嵁鏉ユ簮 + /// </summary> + public EnumDataSource? DataSource { get; set; } + + /// <summary> + /// 鏁版嵁鏉ユ簮Id + /// </summary> + public Guid? DataSourceId { get; set; } public void Configure(EntityTypeBuilder<User> entityBuilder, DbContext dbContext, Type dbContextLocator) { -- Gitblit v1.9.1