yanjinhui
2025-05-16 dd5b18ba20b6863ec91c364dff0aa3b9353e54b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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; }
    }
}