/**
 * 机柜容量数据
 */
export type CabinetCapacityData = {
    /**
     * 机柜ID
     */
    cabinet_id: string;
    /**
     * 百分比
     */
    percent: number;
    /**
     * 提示文本
     */
    tip: string;
};
