using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareCommon.Util { /// ///策略模式的通用接口 /// public interface IStrategy { /// /// 执行具体的策略方法 /// void DoJob(); } }