Commit 1d335f0a authored by 黄奎's avatar 黄奎

页面修改

parent 61c2447d
...@@ -100,7 +100,7 @@ namespace EduSpider.Spiders.ClassInRule ...@@ -100,7 +100,7 @@ namespace EduSpider.Spiders.ClassInRule
foreach (var item in stus) foreach (var item in stus)
{ {
var tempAccount = stuAccountList?.FirstOrDefault(qitem => qitem.Id == item.StudId && qitem.Account == item.StudentAccount && qitem.AccountId == item.StudentUid); var tempAccount = stuAccountList?.FirstOrDefault(qitem => qitem.Id == item.StudId && qitem.Account == item.StudentAccount && qitem.AccountId == item.StudentUid);
accountList.Add(new rb_account_hk() var accountModel = new rb_account_hk()
{ {
UniqueId = tempAccount?.UniqueId ?? 0, UniqueId = tempAccount?.UniqueId ?? 0,
Id = item.StudId, Id = item.StudId,
...@@ -111,7 +111,8 @@ namespace EduSpider.Spiders.ClassInRule ...@@ -111,7 +111,8 @@ namespace EduSpider.Spiders.ClassInRule
Password = DESHepler.Encrypt(item.StudentAccount[^6..]), Password = DESHepler.Encrypt(item.StudentAccount[^6..]),
Status = 0, Status = 0,
UnionId = "" UnionId = ""
}); };
accountList.Add(accountModel);
} }
} }
#endregion #endregion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment