2025-03-16 03:17:36 +08:00
|
|
|
using Seyounth.Hyosung.Data.Entities;
|
|
|
|
|
|
|
|
namespace Seyounth.Hyosung.Data.Services;
|
|
|
|
|
|
|
|
public interface IDictService
|
|
|
|
{
|
|
|
|
Task<string> GetKeyAsync(string type, string value);
|
|
|
|
|
|
|
|
Task<List<DictEntity>> GetDictsByTypeAsync(string type);
|
2025-03-23 13:09:36 +08:00
|
|
|
|
|
|
|
Task SetValue(string type, string key,string value);
|
|
|
|
|
|
|
|
Task<string> GetValue(string type, string key);
|
2025-03-16 03:17:36 +08:00
|
|
|
}
|