namespace iWareCommon.Common.Entity { /// ///策略模式的通用接口 /// public interface IStrategy { /// /// 执行具体的策略方法 /// void DoJob(); } }