blob: 9933e8a6047183d74226669ffc3317be42862938 (
plain)
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
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tango.DAL.Remote.DB
{
using System;
using System.Collections.Generic;
public partial class HARDWARE_MOTORS
{
public int ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public string HARDWARE_MOTOR_TYPE_GUID { get; set; }
public string HARDWARE_VERSION_GUID { get; set; }
public int MIN_FREQUENCY { get; set; }
public int MAX_FREQUENCY { get; set; }
public int MIN_MICRO_STEP { get; set; }
public int MAX_MICRO_STEP { get; set; }
public double LINEAR_RATIO { get; set; }
public int MEDIAN_POSITION { get; set; }
public double CORRECTION_GAIN { get; set; }
public double RATIO_TO_DRYER_SPEED { get; set; }
public double KP { get; set; }
public double KI { get; set; }
public double KD { get; set; }
public double CHANGE_SLOPE { get; set; }
public double HIGH_LENGTH_MICRO_SECOND { get; set; }
public bool SPEED_MASTER { get; set; }
public virtual HARDWARE_MOTOR_TYPES HARDWARE_MOTOR_TYPES { get; set; }
public virtual HARDWARE_VERSIONS HARDWARE_VERSIONS { get; set; }
}
}
|