blob: 55ac11d31bb4271d07a3830261b98d38496caeee (
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_PID_CONTROLS
{
public int ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public string HARDWARE_PID_CONTROL_TYPE_GUID { get; set; }
public string HARDWARE_VERSION_GUID { get; set; }
public int OUTPUT_PROPORTIONAL_POWER_LIMIT { get; set; }
public int OUTPUT_PROPORTIONAL_BAND { get; set; }
public int INTEGRAL_TIME { get; set; }
public int DERIVATIVE_TIME { get; set; }
public int SENSOR_CORRECTION_ADJUSTMENT { get; set; }
public int SENSOR_MIN_VALUE { get; set; }
public int SENSOR_MAX_VALUE { get; set; }
public int SET_POINT_RAMP_RATEOR_SOFT_START_RAMP { get; set; }
public int SET_POINT_CONTROL_OUTPUT_RATE { get; set; }
public int CONTROL_OUTPUT_TYPE { get; set; }
public int SSR_CONTROL_OUTPUT_TYPE { get; set; }
public int OUTPUT_ON_OFF_HYSTERESIS_VALUE { get; set; }
public int PROCESS_VARIABLE_SAMPLING_RATE { get; set; }
public int PV_INPUT_FILTER_FACTOR_MODE { get; set; }
public virtual HARDWARE_PID_CONTROL_TYPES HARDWARE_PID_CONTROL_TYPES { get; set; }
public virtual HARDWARE_VERSIONS HARDWARE_VERSIONS { get; set; }
}
}
|