傅行帆 преди 3 години
родител
ревизия
d9becaff45
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2
    0
      src/main/java/com/yunzhi/marketing/xlk/controller/CustomerInfoController.java

+ 2
- 0
src/main/java/com/yunzhi/marketing/xlk/controller/CustomerInfoController.java Целия файл

@@ -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