using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SLH.SSDMS.Model.DTO { /// /// 无人巡检数据上传DTO /// public class UploadModelDTO { public int objId { get; set; } /// /// 运行方向 /// public int orderFlag { get; set; } /// /// 运行速度 /// public decimal speed { get; set; } /// /// 运载流量 /// public decimal carryFlow { get; set; } /// /// 总作业量 /// public decimal titalWorkLoad { get; set; } /// /// 记录时间 /// public string readTime { get; set; } } }