Lyyyi hace 1 semana
padre
commit
d5645dafa9

+ 1 - 1
OASystem/OASystem.Domain/Entities/Resource/Res_InvitationAI.cs

@@ -355,7 +355,7 @@ namespace OASystem.Domain.Entities.Resource
         /// 根据人数自动匹配规模标签
         /// </summary>
         public static string GetLabel(int count) =>
-            BuildInitialData().FirstOrDefault(s => count >= s.MinStaff && count <= s.MaxStaff)?.Label ?? "未知规模";
+            BuildInitialData().FirstOrDefault(s => count >= s.MinStaff && count <= s.MaxStaff)?.Name ?? "未知规模";
     }
 
     #endregion