You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SLH.SSDMS.Model.DTO
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 无人巡检数据上传DTO
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class UploadModelDTO
|
|
|
|
|
{
|
|
|
|
|
public int objId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运行方向
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int orderFlag { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运行速度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal speed { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运载流量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal carryFlow { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 总作业量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal titalWorkLoad { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记录时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string readTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|