using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media; namespace FujianEarthquake.Models { public class JunctionBoxEnvironModel : ParameterModel { private float temperature; /// /// 接驳盒温度 /// public float Temperature { get { return temperature; } set { temperature = value; } } private float humidity; /// /// 接驳盒湿度 /// public float Humidity { get { return humidity; } set { humidity = value; } } private ImageSource leakage; /// /// 接驳盒漏水 /// public ImageSource Leakage { get { return leakage; } set { leakage = value; } } //private ImageSource hatch_State; ///// ///// 舱门状态 ///// //public ImageSource Hatch_State //{ // get { return hatch_State; } // set { hatch_State = value; } //} private float attitudeX; /// /// 接驳盒姿态x轴 /// public float AttitudeX { get { return attitudeX; } set { attitudeX = value; this.DoNotify(); } } private float attitudeY; /// /// 接驳盒姿态y轴 /// public float AttitudeY { get { return attitudeY; } set { attitudeY = value; this.DoNotify(); } } private float attitudeZ; /// /// 接驳盒姿态z轴 /// public float AttitudeZ { get { return attitudeZ; } set { attitudeZ = value; this.DoNotify(); } } } }