//using BaseService.Controllers; //using Microsoft.AspNetCore.Mvc; //using System; //using System.Collections.Generic; //using System.Text; //using System.Threading.Tasks; //using BaseService.BaseData.UserBranchRoleManagement; //using BaseService.BaseData.UserBranchRoleManagement.Dto; //using Volo.Abp.Application.Dtos; //namespace BaseService.HttpApi.BaseData //{ // [Area("base")] // [Route("api/base/userBranchRole")] // public class UserBranchRoleController : BaseServiceController, IUserBranchAppService // { // private readonly IUserBranchAppService _jobAppService; // public UserBranchRoleController(IUserBranchAppService jobAppService) // { // _jobAppService = jobAppService; // } // [HttpPost] // public Task CreateAsync(CreateOrUpdateUserBranchDto input) // { // return _jobAppService.CreateAsync(input); // } // [HttpPost] // [Route("delete")] // public Task DeleteAsync(List ids) // { // return _jobAppService.DeleteAsync(ids); // } // /// // /// 获取单条数据 // /// // /// // /// // [HttpGet] // [Route("{id}")] // public Task GetAsync(Guid id) // { // return _jobAppService.GetAsync(id); // } // [HttpGet] // [Route("all")] // public Task> GetPagedListAsync(GetUserBranchInput input) // { // return _jobAppService.GetPagedListAsync(input); // } // //[HttpGet] // //[Route("userbranchroles")] // //public Task> GetAllAsync() // //{ // // return _jobAppService.GetAllAsync(); // //} // [HttpPut] // [Route("{id}")] // public Task UpdateAsync(Guid id, CreateOrUpdateUserBranchDto input) // { // return _jobAppService.UpdateAsync(id, input); // } // } //}