@@ -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