|
@@ -376,6 +376,7 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
string Mobile = data["Mobile"].ToString(); //手机号
|
|
|
string NickName = data["NickName"].ToString();
|
|
|
string HeadPhoto = data["HeadPhoto"].ToString();
|
|
|
+ string MakerCode = data["MakerCode"].ToString();
|
|
|
string KxsOpenId = data["KxsOpenId"].ToString();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
Users user = maindb.Users.FirstOrDefault(m => m.Mobile == Mobile && m.Tags == KxsOpenId);
|
|
@@ -388,6 +389,7 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
NickName = NickName,
|
|
|
HeadPhoto = HeadPhoto,
|
|
|
Mobile = Mobile,
|
|
|
+ MakerCode = MakerCode,
|
|
|
}).Entity;
|
|
|
maindb.SaveChanges();
|
|
|
}
|
|
@@ -396,6 +398,7 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
user.UpdateDate = DateTime.Now;
|
|
|
user.NickName = NickName;
|
|
|
user.HeadPhoto = HeadPhoto;
|
|
|
+ user.MakerCode = MakerCode;
|
|
|
maindb.SaveChanges();
|
|
|
}
|
|
|
UserForMobile query = maindb.UserForMobile.FirstOrDefault(m => m.Mobile == Mobile);
|