Sfoglia il codice sorgente

联系人电话进行统一

machenyang 8 anni fa
parent
commit
3fb8d0f99a

+ 4 - 3
codegit/CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/customer/CustomerController.cs

170
             }
170
             }
171
             return res;
171
             return res;
172
         }
172
         }
173
-
173
+        
174
         /// <summary>
174
         /// <summary>
175
         /// 添加/修改客户信息
175
         /// 添加/修改客户信息
176
         /// </summary>
176
         /// </summary>
202
                         model.F_CustomerName = name;
202
                         model.F_CustomerName = name;
203
                         model.F_Province = province;
203
                         model.F_Province = province;
204
                         model.F_CustomerIndustry = customerindustry;
204
                         model.F_CustomerIndustry = customerindustry;
205
-                        model.F_Mobile = mobile;
205
+                        //统一为F_Telephone
206
+                        model.F_Telephone = mobile;
206
 
207
 
207
                         model.F_CreateBy = userId;
208
                         model.F_CreateBy = userId;
208
                         model.F_CreatedOn = DateTime.Now;
209
                         model.F_CreatedOn = DateTime.Now;
225
                             model.F_CustomerName = name;
226
                             model.F_CustomerName = name;
226
                             model.F_Province = province;
227
                             model.F_Province = province;
227
                             model.F_CustomerIndustry = customerindustry;
228
                             model.F_CustomerIndustry = customerindustry;
228
-                            model.F_Mobile = mobile;
229
+                            model.F_Telephone = mobile;
229
                             if (bll.Update(model))
230
                             if (bll.Update(model))
230
                             {
231
                             {
231
                                 res = Success("修改成功!", model);
232
                                 res = Success("修改成功!", model);