@ -64,7 +64,7 @@ public class ClientCommonController : ApiController
/// <param name="queryKey">搜索关键词(可空)</param>
/// <returns></returns>
[HttpGet, Route("GetServiceItem")]
public async Task < DataResult < List < SelectListItem > > > GetServiceItemAsync ( BusinessType businessType , string? queryKey = null )
public async Task < DataResult < List < SelectListItem > > > GetServiceItemAsync ( BusinessType businessType , string? queryKey = null )
{
return await _invokeService . GetServiceItemAsync ( businessType , queryKey ) ;
}
@ -75,7 +75,7 @@ public class ClientCommonController : ApiController
/// <param name="queryKey">搜索关键词(可空)</param>
/// <returns></returns>
[HttpGet, Route("GetStlMode")]
public async Task < DataResult < List < CodeStlModeRes > > > GetStlModeAsync ( string? queryKey = null )
public async Task < DataResult < List < CodeStlModeRes > > > GetStlModeAsync ( string? queryKey = null )
{
return await _invokeService . GetStlModeAsync ( queryKey ) ;
}
@ -87,7 +87,7 @@ public class ClientCommonController : ApiController
/// <param name="queryKey">搜索关键词(可空)</param>
/// <returns></returns>
[HttpGet, Route("GetClientBank")]
public async Task < DataResult < List < ClientBankRes > > > GetClientBankAsync ( long id , string? queryKey = null )
public async Task < DataResult < List < ClientBankRes > > > GetClientBankAsync ( long id , string? queryKey = null )
{
return await _invokeService . GetClientBankAsync ( id , queryKey ) ;
}
@ -249,7 +249,7 @@ public class ClientCommonController : ApiController
/// 获取往来单位下拉集合列表
/// </summary>
/// <returns></returns>
[HttpGet ]
[HttpGet , Obsolete ]
[Route("GetMultiClientList")]
public async Task < DataResult < List < ClientSelectMultiRes > > > GetMultiClientList ( )
{
@ -364,7 +364,7 @@ public class ClientCommonController : ApiController
var res = _invokeService . GetAllClientList ( id , type ) ;
return res ;
}
/// <summary>
/// 获取部门列表
/// </summary>