Commit de8c5444 authored by zhengyi's avatar zhengyi

返回客户经理id

parent 705da10d
...@@ -62,4 +62,12 @@ public class CustomerContactsBaseVO { ...@@ -62,4 +62,12 @@ public class CustomerContactsBaseVO {
@ApiModelProperty(value = "客户编号") @ApiModelProperty(value = "客户编号")
private String customerNumber; private String customerNumber;
/**
* 客户编号
*/
@TableField(exist = false)
@ApiModelProperty(value = "客户经理")
private Long customerService;
} }
...@@ -110,6 +110,7 @@ public class CustomerContactsController { ...@@ -110,6 +110,7 @@ public class CustomerContactsController {
respVOList.stream().forEach(customerContactsRespVO -> { respVOList.stream().forEach(customerContactsRespVO -> {
customerContactsRespVO.setCompany(customer.getCompany()); customerContactsRespVO.setCompany(customer.getCompany());
customerContactsRespVO.setCustomerNumber(customer.getNumber()); customerContactsRespVO.setCustomerNumber(customer.getNumber());
customerContactsRespVO.setCustomerService(customer.getCustomerService());
}); });
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment