using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Telescopic
{
public class SpeedDTO
{
///
///左PLC自动伸出缩回速度
///
public double ExtendSpeed { get; set; }
///
/// 右PLC自动伸出缩回速度
///
public double RetractionSpeed { get; set; }
///
/// 左PLC手动伸出缩回速度
///
public double ManualExtend { get; set; }
///
/// 右PLC手动伸出缩回速度
///
public double ManualRetraction { get; set; }
///
/// 左自动伸出位置
///
public double LeftPosition { get; set; }
///
/// 右自动伸出位置
///
public double RightPosition { get; set; }
///
/// 账号
///
public string account { get; set; }
}
}