瀏覽代碼

bug 修复

傅行帆 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
             TaRecommendCustomer customer = iTaRecommendCustomerService.getById(customerId);
204
             TaRecommendCustomer customer = iTaRecommendCustomerService.getById(customerId);
205
             if (null != customer) {
205
             if (null != customer) {
206
                 customer.setSex(customerInfo.getSex());
206
                 customer.setSex(customerInfo.getSex());
207
+                customer.setName(customerInfo.getName());
208
+                customer.setPhone(customerInfo.getPhone());
207
                 iTaRecommendCustomerService.updateById(customer);
209
                 iTaRecommendCustomerService.updateById(customer);
208
             }
210
             }
209
 
211