|
@@ -204,6 +204,8 @@ public class CustomerInfoController extends BaseController {
|
204
|
204
|
TaRecommendCustomer customer = iTaRecommendCustomerService.getById(customerId);
|
205
|
205
|
if (null != customer) {
|
206
|
206
|
customer.setSex(customerInfo.getSex());
|
|
207
|
+ customer.setName(customerInfo.getName());
|
|
208
|
+ customer.setPhone(customerInfo.getPhone());
|
207
|
209
|
iTaRecommendCustomerService.updateById(customer);
|
208
|
210
|
}
|
209
|
211
|
|