using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace WIDESEA.Common { [XmlRoot("ROOT")] public class getInfoByJournalXMLEntity { [XmlElement] public string FLAG { get; set; } [XmlElement] public string ERROR { get; set; } [XmlElement] public Datas Datas { get; set; } } [XmlRoot("Datas")] public class Datas { [XmlElement] public List Data { get; set; } } [XmlRoot("Data")] public class Data { [XmlAttribute] public string name { get; set; } [XmlAttribute] public string value { get; set; } [XmlAttribute] public string time { get; set; } } public class QueryZCInfo { /// /// 左轴径平均值 /// public string zzjAVG { get; set; } /// /// 右轴径平均值 /// public string yzjAVG { get; set; } /// /// 左防尘板平均值 /// public string zfcbAVG { get; set; } /// /// 右防尘板平均值 /// public string yfcbAVG { get; set; } /// /// 左油档平均值 /// public string zydAVG { get; set; } /// /// 右油档平均值 /// public string yydAVG { get; set; } /// /// 车型 /// public string materiel { get; set; } /// /// 厂家 /// public object manufacturerArray { get;set;} /// /// 检修类型 /// public object neworold { get; set; } /// /// 轮对号 /// public object ldCode { get; set; } /// /// 备用数据 /// public object ortherData { get; set; } } }