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
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
|
public int ID { get; set; }
|
|
/// <summary>
|
///左PLC自动伸出缩回速度
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "自动伸出速度")]
|
public double ExtendSpeed { get; set; }
|
|
/// <summary>
|
/// 右PLC自动伸出缩回速度
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "自动缩回速度")]
|
public double RetractionSpeed { get; set; }
|
|
|
/// <summary>
|
/// 左PLC手动伸出缩回速度
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "手动伸出速度")]
|
public double ManualExtend { get; set; }
|
|
|
/// <summary>
|
/// 右PLC手动伸出缩回速度
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "手动缩回速度")]
|
public double ManualRetraction { get; set; }
|
|
/// <summary>
|
/// 左自动伸出位置
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "左自动伸出位置")]
|
public double LeftPosition { get; set; }
|
|
|
/// <summary>
|
/// 右自动伸出位置
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "左自动伸出位置")]
|
public double RightPosition { get; set; }
|
|
/// <summary>
|
/// 部门id
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "部门id")]
|
public int Deptid { get; set; }
|
}
|
}
|