using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FileDataUpload.Entity { public class ParamData { /// /// /// public string deviceCode { get; set; } /// /// /// public string propertyCode { get; set; } /// /// /// public int dataType { get; set; } /// /// /// public object propertyValue { get; set; } /// /// /// public string time { get; set; } } }