blob: 0948f293af4428abfdf01b63517637c23d95cb11 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
//------------------------------------------------------------------------------
// <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; }
public long TW_TRANSPARENT_INK_QUANTITY { get; set; }
public long C1_TI_QUANTITY { get; set; }
public long TW_CYAN_QUANTITY { get; set; }
public long TW_LIGHT_CYAN_QUANTITY { get; set; }
public long TW_MAGENTA_QUANTITY { get; set; }
public long TW_LIGHT_MAGENTA_QUANTITY { get; set; }
public long TW_YELLOW_QUANTITY { get; set; }
public long TW_LIGHT_YELLOW_QUANTITY { get; set; }
public long C1_YELLOW_QUANTITY { get; set; }
public long C1_LIGHT_YELLOW_QUANTITY { get; set; }
public long TW_BLACK_QUANTITY { get; set; }
public long TW_VIOLET_QUANTITY { get; set; }
public long TW_LIGHT_VIOLET_QUANTITY { get; set; }
public long CT_BLUE_QUANTITY { get; set; }
public long CT_LIGHT_BLUE_QUANTITY { get; set; }
public long CT_RUBINE_QUANTITY { get; set; }
public long CT_LIGHT_RUBINE_QUANTITY { get; set; }
public long CT_ORANGE_QUANTITY { get; set; }
public long CT_LIGHT_ORANGE_QUANTITY { get; set; }
public long CT_NAVY_QUANTITY { get; set; }
public long HD_BLUE_QUANTITY { get; set; }
public long HD_LIGHT_BLUE_QUANTITY { get; set; }
public long HD_RUBINE_QUANTITY { get; set; }
public long HD_LIGHT_RUBINE_QUANTITY { get; set; }
public long HD_ORANGE_QUANTITY { get; set; }
public long HD_LIGHT_ORANGE_QUANTITY { get; set; }
public long HD_NAVY_QUANTITY { get; set; }
public long HD_LIGHT_NAVY_QUANTITY { get; set; }
public long AM_BLUE_QUANTITY { get; set; }
public long AM_LIGHT_BLUE_QUANTITY { get; set; }
public long AM_RED_QUANTITY { get; set; }
public long AM_LIGHT_RED_QUANTITY { get; set; }
public long AM_ORANGE_QUANTITY { get; set; }
public long AM_LIGHT_ORANGE_QUANTITY { get; set; }
public long AM_YELLOW_QUANTITY { get; set; }
public long AM_LIGHT_YELLOW_QUANTITY { get; set; }
public long AM_BLACK_QUANTITY { get; set; }
}
}
|