列表查询条件添加
This commit is contained in:
21
src/WMS.Web.Domain/Infrastructure/IBasicsRepositories.cs
Normal file
21
src/WMS.Web.Domain/Infrastructure/IBasicsRepositories.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.Basics;
|
||||
|
||||
namespace WMS.Web.Domain.Infrastructure
|
||||
{
|
||||
/// <summary>
|
||||
/// 基础数据
|
||||
/// </summary>
|
||||
public interface IBasicsRepositories
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取所有人员-根据主体
|
||||
/// </summary>
|
||||
/// <param name="CompanyId"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<SysStaffResponse>> GetStaffListAsync(int CompanyId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user