客户回调接口

master
Caps 6 years ago
parent f9cdefb483
commit 78f23e3532

@ -72,6 +72,7 @@ public class CustomerService {
//做插入使用 //做插入使用
OpCustomer insertCustomer = new OpCustomer(); OpCustomer insertCustomer = new OpCustomer();
insertCustomer.setWechatUniId(customerDTO.getUniId()); insertCustomer.setWechatUniId(customerDTO.getUniId());
insertCustomer.setName(customerDTO.getName());
if(null != opCustomer){ if(null != opCustomer){
//存在--1.处理客户导购关系。 //存在--1.处理客户导购关系。
sellerCustomerRelation(opCustomer,customerDTO.getStaffCode(),poiStore.getId(),poiStoreStaff.getUserId()); sellerCustomerRelation(opCustomer,customerDTO.getStaffCode(),poiStore.getId(),poiStoreStaff.getUserId());

@ -17,6 +17,11 @@ public class CustomerDTO {
*/ */
private String uniId; private String uniId;
/**
*
*/
private String name;
/** /**
* *
*/ */

Loading…
Cancel
Save