2025-06-06 16:00:39 +08:00

29 lines
950 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using System.Threading.Tasks;
using VOL.Core.BaseProvider;
using VOL.Entity.DomainModels;
namespace VOL.System.IServices
{
public partial interface ISys_DictionaryService
{
/// <summary>
/// 代码生成器获取所有字典项(超级管理权限)
/// </summary>
/// <returns></returns>
Task<List<string>> GetBuilderDictionary();
object GetVueDictionary(string[] dicNos);
object GetTableDictionary(Dictionary<string, object[]> keyData);
object GetSearchDictionary(string dicNo, string value);
/// <summary>
/// 表单设置为远程查询重置或第一次添加表单时获取字典的key、value
/// </summary>
/// <param name="dicNo"></param>
/// <param name="value"></param>
/// <returns></returns>
Task<object> GetRemoteDefaultKeyValue(string dicNo, string key);
}
}