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