傅行帆 před 3 roky
rodič
revize
e527931340

+ 1
- 0
src/main/java/com/yunzhi/marketing/xlk/controller/CustomerInfoController.java Zobrazit soubor

@@ -238,6 +238,7 @@ public class CustomerInfoController extends BaseController {
238 238
             customerInfo.setName(customer.getName());
239 239
             customerInfo.setSex(customer.getSex());
240 240
             customerInfo.setPhone(customer.getPhone());
241
+            customerInfo.setPicture(customer.getPicture());
241 242
 
242 243
             responseBean.addSuccess(customerInfo);
243 244
         }catch (Exception e){

+ 7
- 0
src/main/java/com/yunzhi/marketing/xlk/entity/CustomerInfo.java Zobrazit soubor

@@ -147,4 +147,11 @@ public class CustomerInfo implements Serializable {
147 147
      * 创建person
148 148
      */
149 149
     private String createPerson;
150
+
151
+    /**
152
+     * 头像
153
+     */
154
+    @TableField(exist = false)
155
+    private String picture;
156
+
150 157
 }