using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models
{
[SugarTable("Dt_Parameters", "伸缩杆参数设置表")]
public class Dt_Parameters: BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
public int ID { get; set; }
///
///左PLC自动伸出缩回速度
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "自动伸出速度")]
public double ExtendSpeed { get; set; }
///
/// 右PLC自动伸出缩回速度
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "自动缩回速度")]
public double RetractionSpeed { get; set; }
///
/// 左PLC手动伸出缩回速度
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "手动伸出速度")]
public double ManualExtend { get; set; }
///
/// 右PLC手动伸出缩回速度
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "手动缩回速度")]
public double ManualRetraction { get; set; }
///
/// 左自动伸出位置
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "左自动伸出位置")]
public double LeftPosition { get; set; }
///
/// 右自动伸出位置
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "左自动伸出位置")]
public double RightPosition { get; set; }
///
/// 部门id
///
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "部门id")]
public int Deptid { get; set; }
}
}