19 lines
465 B
C#
19 lines
465 B
C#
using Syc.Basic.Web.WMS.Entitys;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Syc.Basic.Web.WMS.Repository
|
|
{
|
|
public interface IOrganizationRepository
|
|
{
|
|
/// <summary>
|
|
/// 获取所有子级组织
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<List<Organization>> GetAllSubordinates(int id);
|
|
}
|
|
} |