namespace Yw.Run { /// /// 运行状态 /// public class RunStatus { /// /// 停机 /// public const int Shut = 0; /// /// 开机 /// public const int Run = 1; } }