示例#1
0
        public IActionResult SearchHotelMerchantUser([FromQuery] HotelMerchantUserSearchModel model)
        {
            var response = _hotelMerchantUserService.SearchHotelMerchantUser(model);

            if (response != null)
            {
                return(Ok(response));
            }
            return(BadRequest());
        }