You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
950 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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);
}
}