Lyyyi 1 주 전
부모
커밋
d5645dafa9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      OASystem/OASystem.Domain/Entities/Resource/Res_InvitationAI.cs

+ 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