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.
BookingHeChuan/Myshipping.Core/Service/Config/ISysConfigService.cs

23 lines
677 B
C#

using Myshipping.Core.Entity;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Myshipping.Core.Service;
public interface ISysConfigService
{
Task AddConfig(AddConfigInput input);
Task DeleteConfig(DeleteConfigInput input);
Task<SysConfig> GetConfig([FromQuery] QueryConfigInput input);
Task<dynamic> GetConfigList([FromQuery] ConfigInput input);
Task<dynamic> QueryConfigPageList([FromQuery] ConfigInput input);
Task UpdateConfig(UpdateConfigInput input);
Task<bool> GetDemoEnvFlag();
Task<bool> GetCaptchaOpenFlag();
Task<string> GetDefaultPassword();
Task CacheData();
}