GTMessagePushUser.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using LYFZ.WanYuKeFuData.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Text;
  7. namespace LYFZ.WanYuKeFuData.DAL
  8. {
  9. public class GTMessagePushUser : BaseDataOperate<LYFZ.WanYuKeFuData.Model.GTMessagePushUser>
  10. {
  11. public GTMessagePushUser(LYFZ.WanYuKeFuData.Model.DBConnection dbConn)
  12. {
  13. base.DBConn = dbConn;
  14. }
  15. public bool BadgeClear(string cid, int badge = 0)
  16. {
  17. string sql = String.Format("update [dbo].[tb_GTMessagePushUser] set Badge={1} where GTClientID='{0}'", cid, badge);
  18. if (LYFZ.Helper.SQLHelper.ExecuteSql(sql, this.DBConn.GetDBConnectionString()) > 0)
  19. {
  20. return true;
  21. }
  22. else
  23. {
  24. return false;
  25. }
  26. }
  27. /// <summary>
  28. /// 用户未读消息统计 (Badge累加 1)
  29. /// </summary>
  30. /// <param name="cidList"></param>
  31. /// <returns></returns>
  32. public bool AddBadgeNumber(string[] cidList)
  33. {
  34. if (cidList.Length > 0)
  35. {
  36. string cidString = String.Join(",", cidList).Trim(',').Trim();
  37. if (!String.IsNullOrEmpty(cidString))
  38. {
  39. string sql = String.Format("update [dbo].[tb_GTMessagePushUser] set Badge=Badge+1 where GTClientID in ('{0}')", cidString.Trim(',').Trim()).Replace(",", "','");
  40. if (LYFZ.Helper.SQLHelper.ExecuteSql(sql, this.DBConn.GetDBConnectionString()) > 0)
  41. {
  42. return true;
  43. }
  44. else
  45. {
  46. return false;
  47. }
  48. }
  49. else
  50. {
  51. return true;
  52. }
  53. }
  54. else
  55. {
  56. return true;
  57. }
  58. }
  59. /// <summary>
  60. ///
  61. /// </summary>
  62. /// <param name="targetUser">目标用户 0 为全部用户 1 为特定用户</param>
  63. /// <returns></returns>
  64. public List<PushSingleUser> GetPushSingleUserList(int targetUser, string targetList)
  65. {
  66. List<PushSingleUser> sUserList = new List<PushSingleUser>();
  67. targetList = targetList.Trim(',');
  68. string sql = String.Format("SELECT [GTType],[Badge],[UserID],[GTClientID],[APPState],[LYFZAPPID] FROM [dbo].[tb_GTMessagePushUser]");
  69. DataTable tb = null;
  70. if (targetList.Trim(',').Trim().Length > 0 || targetUser == 0)
  71. {
  72. switch (targetUser)
  73. {
  74. case 0:
  75. tb = LYFZ.Helper.SQLHelper.Query(String.Format("{0} where UpdateTime>{1}", sql, DateTime.Now.AddDays(-90).ToJavaScriptTimeStamp()), this.DBConn.GetDBConnectionString()).Tables[0];
  76. break;
  77. case 1:
  78. tb = LYFZ.Helper.SQLHelper.Query(String.Format("{0} where GTClientID in ('{1}')", sql, targetList.Replace(",", "','")), this.DBConn.GetDBConnectionString()).Tables[0];
  79. break;
  80. }
  81. }
  82. if (tb != null)
  83. {
  84. foreach (DataRow row in tb.Rows)
  85. {
  86. PushSingleUser sUser = new PushSingleUser();
  87. sUser.GTType = Convert.ToInt32(row["GTType"].ToString());
  88. sUser.GTClientID = row["GTClientID"].ToString();
  89. sUser.Badge = Convert.ToInt32(row["Badge"].ToString());
  90. sUser.UserID = row["UserID"].ToString();
  91. sUser.APPState= Convert.ToInt32(row["APPState"].ToString());
  92. sUser.LYFZAPPID= row["LYFZAPPID"].ToString();
  93. sUserList.Add(sUser);
  94. }
  95. }
  96. return sUserList;
  97. }
  98. }
  99. }