21 lines
341 B
C#
21 lines
341 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MegaRobo.C00225155.Entities
|
|||
|
|
{
|
|||
|
|
public enum DeviceStatus
|
|||
|
|
{
|
|||
|
|
Disable,
|
|||
|
|
Idel,
|
|||
|
|
CarryOn, //搬运中
|
|||
|
|
Initing,
|
|||
|
|
Runing,
|
|||
|
|
Pause,
|
|||
|
|
Finish,
|
|||
|
|
Abort
|
|||
|
|
}
|
|||
|
|
}
|