- 修复RouteService中错误过滤home路由的问题 - 后端现在正确返回所有用户有权限的路由 - 添加设备管理相关功能(列表、在线监控、电源管理、远程监控) - 添加详细的修复文档和重启脚本 - 更新权限配置脚本 问题根源:后端代码中有逻辑会过滤掉home路由,导致前端收到空数组,无法生成菜单 解决方案:移除过滤home路由的逻辑,让后端返回所有有权限的路由
137 lines
4.0 KiB
C#
137 lines
4.0 KiB
C#
//----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) Intel Corporation, 2003 - 2012 All Rights Reserved.
|
|
//
|
|
// File: CIM_Chip.cs
|
|
//
|
|
// Contents: The Chip class represents any type of integrated circuit hardware, including ASICs, processors, memory chips, etc.
|
|
// This file was automatically generated from CIM_Chip.mof
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
using System.Globalization;
|
|
using System.Xml.Serialization;
|
|
using System.IO;
|
|
using Intel.Manageability.WSManagement;
|
|
using Intel.Manageability.Cim.Untyped;
|
|
|
|
|
|
namespace Intel.Manageability.Cim.Typed
|
|
{
|
|
/// <summary>
|
|
///The Chip class represents any type of integrated circuit hardware, including ASICs, processors, memory chips, etc.
|
|
/// </summary>
|
|
[System.SerializableAttribute()]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_Chip")]
|
|
[System.Xml.Serialization.XmlRootAttribute("CIM_Chip", Namespace="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_Chip", IsNullable=false)]
|
|
public class CIM_Chip : CIM_PhysicalComponent
|
|
{
|
|
/// <summary>
|
|
/// Default constructor.
|
|
/// </summary>
|
|
public CIM_Chip() :base()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Constructor that recieves an xml string for deserialization.
|
|
/// </summary>
|
|
/// <param name="xml">xml string to deserialize</param>
|
|
public CIM_Chip(string xml): base((IWSManClient)null)
|
|
{
|
|
this.Deserialize(xml);
|
|
}
|
|
/// <summary>
|
|
/// Constructor which recieves a Ws-Management client object.
|
|
/// </summary>
|
|
/// <param name="client">Ws-Management client</param>
|
|
public CIM_Chip(IWSManClient client): base(client)
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Remove FormFactor field.
|
|
/// Note: This method will succeed only if this field is optional in the concrete object.
|
|
/// </summary>
|
|
public virtual void RemoveFormFactor()
|
|
{
|
|
RemoveField("FormFactor");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Is true if the field FormFactor exists in the current object,
|
|
/// otherwise is false.
|
|
/// </summary>
|
|
public virtual bool FormFactorExist
|
|
{
|
|
get
|
|
{
|
|
return ContainsField("FormFactor");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Optional, The implementation form factor for the Chip. For example, values such as SIMM (7), TSOP (9) or PGA (10) can be specified.
|
|
/// </summary>
|
|
[CimField(false, false)]
|
|
public virtual ushort FormFactor
|
|
{
|
|
get
|
|
{
|
|
return ushort.Parse(this["FormFactor"][0], CultureInfo.InvariantCulture);
|
|
}
|
|
set
|
|
{
|
|
this.SetOrAddField("FormFactor",value.ToString(CultureInfo.InvariantCulture));
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enumerate instances of CIM_Chip class at an endpoint.
|
|
/// </summary>
|
|
/// <param name="client">WS-Management client</param>
|
|
/// <param name="cimKeys">Keys for selecting the instances</param>
|
|
/// <returns>Collection of CIM_Chip objects</returns>
|
|
public static new Collection<CIM_Chip> Enumerate(IWSManClient client, CimBase.CimKeys cimKeys)
|
|
{
|
|
List<CIM_Chip> ret = CimBase.Enumerate<CIM_Chip>(client, cimKeys);
|
|
return new Collection<CIM_Chip>(ret);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enumerate instances of CIM_Chip class at an endpoint.
|
|
/// </summary>
|
|
/// <param name="client">WS-Management client</param>
|
|
/// <returns>Collection of CIM_Chip objects</returns>
|
|
public static new Collection<CIM_Chip> Enumerate(IWSManClient client)
|
|
{
|
|
List<CIM_Chip> ret = CimBase.Enumerate<CIM_Chip>(client);
|
|
return new Collection<CIM_Chip>(ret);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Delete the instance of CIM_Chip if it is singular.
|
|
/// Note: This method will succeed only if a single instance of the class exists.
|
|
/// </summary>
|
|
/// <param name="client">WS-Management client</param>
|
|
public static new void Delete(IWSManClient client)
|
|
{
|
|
CimBase.Delete<CIM_Chip>(client);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Represents the keys of the CIM_Chip class.
|
|
/// </summary>
|
|
|
|
public new class CimKeys : CIM_PhysicalComponent.CimKeys
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|
|
|