blob: c04183622bd21fdbdf1c255f2d631c27bc069174 (
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
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
66
67
68
69
70
71
|
//------------------------------------------------------------------------------
// <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 JOB_RUNS
{
public int ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public string MACHINE_GUID { get; set; }
public string JOB_GUID { get; set; }
public string RML_GUID { get; set; }
public string USER_GUID { get; set; }
public string JOB_NAME { get; set; }
public int JOB_DESIGNATION { get; set; }
public int JOB_SOURCE { get; set; }
public string JOB_STRING { get; set; }
public System.DateTime START_DATE { get; set; }
public Nullable<System.DateTime> UPLOADING_START_DATE { get; set; }
public Nullable<System.DateTime> HEATING_START_DATE { get; set; }
public Nullable<System.DateTime> ACTUAL_START_DATE { get; set; }
public System.DateTime END_DATE { get; set; }
public int STATUS { get; set; }
public double JOB_LENGTH { get; set; }
public bool IS_GRADIENT { get; set; }
public int GRADIENT_RESOLUTION_CM { get; set; }
public string LIQUID_QUANTITY_STRING { get; set; }
public long CYAN_QUANTITY { get; set; }
public long MAGENTA_QUANTITY { get; set; }
public long YELLOW_QUANTITY { get; set; }
public long BLACK_QUANTITY { get; set; }
public long TRANSPARENT_QUANTITY { get; set; }
public long LUBRICANT_QUANTITY { get; set; }
public long CLEANER_QUANTITY { get; set; }
public long LIGHT_CYAN_QUANTITY { get; set; }
public long LIGHT_MAGENTA_QUANTITY { get; set; }
public long LIGHT_YELLOW_QUANTITY { get; set; }
public double END_POSITION { get; set; }
public string FAILED_MESSAGE { get; set; }
public bool IS_HEAD_CLEANING { get; set; }
public bool IS_SYNCHRONIZED { get; set; }
public double JOB_LOGICAL_LENGTH { get; set; }
public int NUMBER_OF_UNITS { get; set; }
public string APPLICATION_VERSION { get; set; }
public string FIRMWARE_VERSION { get; set; }
public string CE_VERSION { get; set; }
public string PROCESS_PARAMETERS_TABLE_GUID { get; set; }
public string FINE_TUNING_STRING { get; set; }
public int MACHINE_TYPE { get; set; }
public double ACTUAL_START_POSITION { get; set; }
public double ACTUAL_END_POSITION { get; set; }
public long BLUE_QUANTITY { get; set; }
public long LIGHT_BLUE_QUANTITY { get; set; }
public long ORANGE_QUANTITY { get; set; }
public long LIGHT_ORANGE_QUANTITY { get; set; }
public long RUBINE_QUANTITY { get; set; }
public long LIGHT_RUBINE_QUANTITY { get; set; }
public long NAVY_QUANTITY { get; set; }
public long VIOLET_QUANTITY { get; set; }
}
}
|