2025-07-08 22:24:26 +08:00
|
|
|
|
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
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 通用服务
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface ICommonService
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 初始化所有固定的枚举下拉框字典
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
2025-07-09 11:58:18 +08:00
|
|
|
|
void InitSelectTypetList();
|
2025-07-08 22:24:26 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 根据type名称获取下拉框数据,主要是枚举等
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="input"></param>
|
|
|
|
|
|
/// <returns></returns>
|
2025-07-09 11:58:18 +08:00
|
|
|
|
List<SelectResult> GetSelectResultList(SelectResultListInput input);
|
2025-07-08 22:24:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|