ulysseskao
2016-05-03 410dc2d04dbecf019129cd8cd65a3be2c62b4d0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace CCSTrace.CCS.Domain
{
    // ReSharper disable once InconsistentNaming
    public enum CCSCaseState
    {
        EventInitial = 1000,// Create new event
        EventProcess = 1001,// Trace and process event in CCS WebService
        WaitForDespatch = 1002, // create DesRec
        EventDespatched = 1003,
        WaitForSponsor = 1005, // create SponRec
        WaitForRepair = 1006, // create RepairRec
        EventFinsh = 1007, // with no RepairRecord
        EventComplete = 1008, // with RepairRecord
        EventOver = 1009, // with RepairRecord but not upload
        EventReturn = 2001, // Return the EOSEventRecord
        AlarmFailure = 2002, // EOSEventRecord AlarmFailure
        EventTrasnfer = 2003 // EOSEventRecord Transfer to Process
    }
}