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.
28 lines
702 B
C#
28 lines
702 B
C#
2 years ago
|
using DS.Module.Core;
|
||
|
using DS.WMS.Core.System.Dtos;
|
||
|
using DS.WMS.Core.System.Entity;
|
||
|
|
||
|
namespace DS.WMS.Core.System.Interface;
|
||
|
|
||
|
public interface ITenantService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 列表查询
|
||
|
/// </summary>
|
||
|
/// <param name="request"></param>
|
||
|
/// <returns></returns>
|
||
|
DataResult<List<SysTenant>> GetListByPage(PageRequest request);
|
||
|
/// <summary>
|
||
|
/// 添加角色
|
||
|
/// </summary>
|
||
|
/// <param name="model"></param>
|
||
|
/// <returns></returns>
|
||
|
DataResult EditTenant(TenantInput model);
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取详情
|
||
|
/// </summary>
|
||
|
/// <param name="id"></param>
|
||
|
/// <returns></returns>
|
||
|
DataResult<SysTenant> GetTenantInfo(string id);
|
||
|
}
|