using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 直接接入式电能计量装置
///
public class Device_DirectAccessElectricEnergyMeteringDevice : Device_Base
{
public static Device_DirectAccessElectricEnergyMeteringDevice instance;
///
/// 铭牌
///
public Device_NamePlate namePlate;
///
/// 接线盖子
///
public Device_Cover cover;
[Tooltip("左盖子螺丝")]
public Tool_Screw cover_screw_Left;
[Tooltip("右盖子螺丝")]
public Tool_Screw cover_screw_Right;
[Tooltip("左盖子封印")]
public Device_Seal cover_seal_Left;
[Tooltip("右盖子封印")]
public Device_Seal cover_seal_Right;
///
/// 电能表接线螺丝
///
public List line_screws;
///
/// 电能表接线
///
public List lines;
///
/// 电能表固定螺丝
///
public List fix_screws;
private void Awake()
{
instance = this;
}
}