You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
|
|
|
|
|
|
public interface ISysDictDataService
|
|
|
|
|
{
|
|
|
|
|
Task AddDictData(AddDictDataInput input);
|
|
|
|
|
Task ChangeDictDataStatus(UpdateDictDataInput input);
|
|
|
|
|
Task DeleteByTypeId(long dictTypeId);
|
|
|
|
|
Task DeleteDictData(DeleteDictDataInput input);
|
|
|
|
|
Task<dynamic> GetDictData([FromQuery] QueryDictDataInput input);
|
|
|
|
|
Task<dynamic> GetDictDataList([FromQuery] QueryDictDataListInput input);
|
|
|
|
|
Task<dynamic> GetDictDataListByDictTypeId(long dictTypeId);
|
|
|
|
|
Task<dynamic> QueryDictDataPageList([FromQuery] DictDataInput input);
|
|
|
|
|
Task UpdateDictData(UpdateDictDataInput input);
|
|
|
|
|
Task<List<SysDictData>> GetDictDataByCode(string code);
|
|
|
|
|
|
|
|
|
|
Task CacheData(bool falg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|