using System; using System.Collections.Generic; using System.Text; namespace WIDESEA.Common { public enum WaveState { /// /// 波次运算 /// WaveState_Computing, /// /// 释放波次 /// WaveState_Released, WaveState_Finished } }