using JiShe.IoT.CommonServices.Dto; using JiShe.ServicePro.Commons; using JiShe.ServicePro.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.IoT.CommonServices { /// /// 通用服务 /// public interface ICommonService { #region 公共依赖接口 /// /// 初始化所有固定的枚举下拉框字典 /// /// Task InitSelectTypetList(); /// /// 根据type名称获取下拉框数据,主要是枚举等 /// /// /// Task> GetSelectResultList(SelectResultListInput input); #endregion } }