|
|
@ -293,7 +293,7 @@ public class BuyerController { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@PostMapping("/quote") |
|
|
|
@PostMapping("/quote") |
|
|
|
@ApiOperation(value = "引用购方信息", notes = "购房信息列表-引用购方信息") |
|
|
|
@ApiOperation(value = "引用购方信息", notes = "购房信息列表-引用购方信息") |
|
|
|
public R quote(@RequestParam Map<String, Object> map) { |
|
|
|
public R quote(@RequestBody Map<String, Object> map) { |
|
|
|
String buyerName = (String) map.get("buyerName"); // 购方名称
|
|
|
|
String buyerName = (String) map.get("buyerName"); // 购方名称
|
|
|
|
String buyerCode = (String) map.get("buyerCode"); // 购方编码
|
|
|
|
String buyerCode = (String) map.get("buyerCode"); // 购方编码
|
|
|
|
if (StringUtils.isEmpty(buyerName) && StringUtils.isEmpty(buyerCode)) { |
|
|
|
if (StringUtils.isEmpty(buyerName) && StringUtils.isEmpty(buyerCode)) { |
|
|
|