傅行帆 hace 3 años
padre
commit
d9becaff45

+ 2
- 0
src/main/java/com/yunzhi/marketing/xlk/controller/CustomerInfoController.java Ver fichero

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