Преглед изворни кода

未读消息加权限

金隅分支
zhangli пре 3 година
родитељ
комит
a603273a5a
1 измењених фајлова са 5 додато и 1 уклоњено
  1. +5
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/MessageRind/MessageRindService.cs

+ 5
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/MessageRind/MessageRindService.cs Прегледај датотеку

@@ -99,7 +99,11 @@ namespace Learun.Application.TwoDevelopment.LR_Desktop
{
try
{
string sql = "select count(1) from MessageRemind where ReadSigns=0";
var userInfo = LoginUserInfo.Get();
string sql = "select count(1) from MessageRemind where ReadSigns=0 ";

sql += $" and ReceiptId='{userInfo.userId}'";

var obj = this.BaseRepository().FindObject(sql);
if (obj == null)
return 0;


Loading…
Откажи
Сачувај