using VberZero.AppService.Base.Dto; using VberZero.AppService.Base.TreeBase.Dto; namespace VberZero.AppService.Base.TreeBase; public interface IVzTreeAppServiceBase : IVzCrudAppService where TEntityDto : class, IVzTreeEntityDto where TG : class, IVzPagedRequestDto where TC : class, IVzTreeEntityDto where TU : class, IVzTreeEntityDto { /// /// 上移 /// /// /// Task MoveUp(VzTreeMoveDto input); /// /// 下移 /// /// /// Task MoveDown(VzTreeMoveDto input); }