You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
724 B
29 lines
724 B
using System;
|
|
|
|
|
|
namespace Gumming.Execute.Workflow
|
|
{
|
|
public class StationWork
|
|
{
|
|
public FlowUnit FlowUnit { get; set; }
|
|
public string StationName { get; set; }
|
|
|
|
public int StationNo { get; set; }
|
|
public DateTime StartTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public bool Done { get; set; }
|
|
|
|
public StationWork()
|
|
{
|
|
}
|
|
|
|
public StationWork(FlowUnit flowUnit, string stationName, DateTime startTime, DateTime endTime, bool done)
|
|
{
|
|
FlowUnit = flowUnit;
|
|
StationName = stationName;
|
|
StartTime = startTime;
|
|
EndTime = endTime;
|
|
Done = done;
|
|
}
|
|
}
|
|
} |