using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMAPP.FJC.TRACING.DAInterface { /// /// 状态动作 /// public interface IStateAction { /// /// 执行动作 /// /// 采集数据 void Execute(DAObject data); } }