RelationClass.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.MainModels;
  5. namespace MySystem
  6. {
  7. public class RelationClass
  8. {
  9. #region 获取产品名称
  10. public static string GetKqProductBrandInfo(int key)
  11. {
  12. WebCMSEntities db = new WebCMSEntities();
  13. KqProducts pro = db.KqProducts.FirstOrDefault(m => m.Id == key);
  14. db.Dispose();
  15. if (pro != null)
  16. {
  17. return pro.Name;
  18. }
  19. return "";
  20. }
  21. #endregion
  22. #region 收支明细变动类型
  23. public static string GetChangeTypeInfo(int key)
  24. {
  25. if (key == 1) return "达标奖励";
  26. return "";
  27. }
  28. #endregion
  29. #region 机具类型
  30. public static string GetPosSnTypeInfo(int key)
  31. {
  32. if (key == 0) return "兑换码";
  33. if (key == 1) return "循环码";
  34. return "";
  35. }
  36. #endregion
  37. #region 订单状态
  38. public static string GetOrderStatusInfo(int key)
  39. {
  40. if (key == 0) return "待付款";
  41. if (key == 1) return "待发货";
  42. if (key == 2) return "已完成";
  43. if (key == 3) return "已发货";
  44. return "";
  45. }
  46. #endregion
  47. #region 机具兑换申请状态
  48. public static string GetMachineApplyStatusInfo(int key)
  49. {
  50. if (key == 0) return "待审核";
  51. if (key == 1) return "申请成功";
  52. if (key == 2) return "申请失败";
  53. return "";
  54. }
  55. #endregion
  56. #region 组队申请状态
  57. public static string GetTeamOfferApplyStatusInfo(int key)
  58. {
  59. if (key == 0) return "待审核";
  60. if (key == 1) return "审核通过";
  61. if (key == 2) return "审核失败";
  62. if (key == 3) return "组队成功";
  63. if (key == 4) return "组队失败";
  64. return "";
  65. }
  66. #endregion
  67. #region 商户激活类型
  68. public static string GetMerchantActTypeInfo(int key)
  69. {
  70. if (key == 0) return "正常激活";
  71. if (key == 1) return "首次已激活MPOS";
  72. if (key == 2) return "首次已激活KPOS";
  73. if (key == 3) return "循环机划拨激活";
  74. return "";
  75. }
  76. #endregion
  77. }
  78. }