using DS.Module.Core;
using DS.WMS.Core.Sys.Dtos;
using DS.WMS.Core.Sys.Entity;
namespace DS.WMS.Core.Sys.Interface;
public interface IConfigService
{
///
/// 列表
///
///
///
DataResult> GetListByPage(PageRequest request);
///
/// 编辑
///
///
///
DataResult EditConfig(ConfigReq model);
///
/// 获取详情
///
///
///
DataResult GetConfigInfo(string id);
///
/// 获取系统参数详情
///
/// 参数代码
/// 租户ID
/// 是否默认系统租户 true-是(tenantId不传参数)false-否(tenantId必传)
///
Task> GetConfig(string code, Nullable tenantId = null, bool isSystemDefault = true);
}