GTMsgRecord.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Text;
  6. namespace LYFZ.WanYuKeFuData.DAL
  7. {
  8. public class GTMsgRecord:BaseDataOperate<LYFZ.WanYuKeFuData.Model.GTMsgRecord>
  9. {
  10. public GTMsgRecord(LYFZ.WanYuKeFuData.Model.DBConnection dbConn)
  11. {
  12. base.DBConn = dbConn;
  13. }
  14. /// <summary>
  15. /// 删除历史消息记录
  16. /// </summary>
  17. /// <param name="time"></param>
  18. /// <returns></returns>
  19. public bool DelMsgHistoryRecord(long time)
  20. {
  21. try
  22. {
  23. string sql = String.Format("delete [dbo].[tb_GTMsgRecord] where [sendTime] <{0}", time);
  24. LYFZ.Helper.SQLHelper.ExecuteSql(sql, this.DBConn.GetDBConnectionString());
  25. string sql2 = String.Format("delete [dbo].[tb_MsgReadStatus] where [ReadTime] <{0}", time);
  26. LYFZ.Helper.SQLHelper.ExecuteSql(sql2, this.DBConn.GetDBConnectionString());
  27. return true;
  28. }
  29. catch {
  30. return false;
  31. }
  32. }
  33. /// <summary>
  34. /// 获取未读消息记录
  35. /// </summary>
  36. /// <param name="eid"></param>
  37. /// <param name="uid"></param>
  38. /// <returns></returns>
  39. public int GetUnreadCount(string eid, string uid, string Platform)
  40. {
  41. string sql1 = String.Format("select count(1) as ReadCount from [tb_MsgReadStatus] left join [tb_GTMsgRecord] on [tb_MsgReadStatus].[msgID]=[tb_GTMsgRecord].ID where [UserID]='{0}' and ([EnterpriseID]='{1}' or [EnterpriseID]='E1000') and [Platform] like '%{2}%'", uid, eid, Platform);
  42. string eidAndUid = String.Format("{0}:{1}",eid,uid);
  43. string sql2 = String.Format("SELECT count(id) as msgCount FROM [tb_GTMsgRecord] where (EnterpriseID='{0}' or EnterpriseID='E1000') and (TargetUser <=1 or [targetList] like '%,{1},%' or [targetList] like '%,{3},%') and [Platform] like '%{2}%'", eid, uid, Platform, eidAndUid);
  44. int msgCount = Convert.ToInt32(LYFZ.Helper.SQLHelper.GetSingle(sql2, this.DBConn.GetDBConnectionString()));
  45. int ReadCount = Convert.ToInt32(LYFZ.Helper.SQLHelper.GetSingle(sql1, this.DBConn.GetDBConnectionString()));
  46. int unreadCount = msgCount - ReadCount;
  47. return unreadCount >= 0 ? unreadCount : 0;
  48. }
  49. /// <summary>
  50. /// 获取指定用户已读消息iD集合
  51. /// </summary>
  52. /// <param name="eid"></param>
  53. /// <param name="uid"></param>
  54. /// <returns></returns>
  55. public List<string> GetReadMsIDList(string eid, string uid, string Platform)
  56. {
  57. string sql = String.Format("select [msgID] from [tb_MsgReadStatus] left join [tb_GTMsgRecord] on [tb_MsgReadStatus].[msgID]=[tb_GTMsgRecord].ID where [UserID]='{0}' and ([EnterpriseID]='{1}' or EnterpriseID='E1000') and [Platform] like '%{2}%'", uid, eid, Platform);
  58. DataTable tb = LYFZ.Helper.SQLHelper.Query(sql, this.DBConn.GetDBConnectionString()).Tables[0];
  59. List<string> msgIDList = new List<string>();
  60. foreach (DataRow row in tb.Rows)
  61. {
  62. msgIDList.Add(row["msgID"].ToString());
  63. }
  64. return msgIDList;
  65. }
  66. }
  67. }