31 lines
662 B
C#
31 lines
662 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 计量柜
|
|
/// </summary>
|
|
public class Device_MeasuringCabinet : Device_Base
|
|
{
|
|
/// <summary>
|
|
/// 直接接入式电能计量装置
|
|
/// </summary>
|
|
public Device_DirectAccessElectricEnergyMeteringDevice meteringDevice;
|
|
/// <summary>
|
|
/// 柜门
|
|
/// </summary>
|
|
public Device_CabinetDoor cabinetDoor;
|
|
/// <summary>
|
|
/// 插座
|
|
/// </summary>
|
|
public Device_Socket socket;
|
|
/// <summary>
|
|
/// 进电开关
|
|
/// </summary>
|
|
public Device_Switch inSwitch;
|
|
/// <summary>
|
|
/// 封印
|
|
/// </summary>
|
|
public Device_Seal seal;
|
|
}
|