using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Shared { /// /// 空调模块 /// [System.Serializable] public class HVAC :AC { public HVAC () { Type = DeviceType.HVAC; DeviceTextID = 42; //SimpleControl.R.MyInternationalizationString.AC; } } }