using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service { public interface IModelManager : IGenericManager { IList LoadAllByPage(out long total, int page, int rows, string order, string sort); Model GetByName(string name); /// /// 应用节能模式 /// /// /// void ApplyModel(Model model, IList hosts, string user); } }