blob: 15c819d3a24c1386808adcf96d75127d89362e78 (
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
|
//------------------------------------------------------------------------------
// <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 int CYAN_QUANTITY { get; set; }
public int MAGENTA_QUANTITY { get; set; }
public int YELLOW_QUANTITY { get; set; }
public int BLACK_QUANTITY { get; set; }
public int TRANSPARENT_QUANTITY { get; set; }
public int LUBRICANT_QUANTITY { get; set; }
public int CLEANER_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; }
}
}
|