using GDZZ.Core; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; using GDZZ.Application.Entity; using System.Collections.Generic; using GDZZ.Core.Service; namespace GDZZ.Application { public interface IPositionService { Task Add(AddPositionInput input); Task Delete(DeleteOrgInput input); Task QueryPage([FromQuery] PageOrgInput input); } }