Now relying on pipeline to copy files from file shares for ghost-pcl and linc-pdfc
Now using entered-date-time-filter and load-signature-date-time-filter for logistics query
This commit is contained in:
@ -11,13 +11,15 @@ public class Common
|
||||
public int? ReactorNumber { get; }
|
||||
public string? Zone { get; }
|
||||
public string? Employee { get; }
|
||||
public WorkOrder? WorkOrder { get; }
|
||||
|
||||
public Common(string? layer,
|
||||
string? psn,
|
||||
int? rdsNumber,
|
||||
int? reactor,
|
||||
string? zone,
|
||||
string? employee)
|
||||
string? employee,
|
||||
WorkOrder? workOrder)
|
||||
{
|
||||
Layer = layer;
|
||||
PSN = psn;
|
||||
@ -25,6 +27,7 @@ public class Common
|
||||
ReactorNumber = reactor;
|
||||
Zone = zone;
|
||||
Employee = employee;
|
||||
WorkOrder = workOrder;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user