智慧食堂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 line
4.7 KiB

  1. package enum
  2. type SysCfg string
  3. const (
  4. AppName = "app_name"
  5. OpenAlipayAppid = "open_alipay_appid"
  6. OpenAlipayAesKey = "open_alipay_aes_key"
  7. OpenAlipayAppPrivateKey = "open_alipay_app_private_key"
  8. OpenAlipayAppPublicKey = "open_alipay_app_public_key"
  9. OpenAlipayPublicKey = "open_alipay_public_key"
  10. OpenAppletAesKey = "open_applet_aes_key"
  11. OpenAppletAppid = "open_applet_appid"
  12. OpenAppletAppPrivateKey = "open_applet_app_private_key"
  13. OpenAppletAppPublicKey = "open_applet_app_public_key"
  14. OpenAppletPublicKey = "open_applet_public_key"
  15. FileBucketHost = "file_bucket_host"
  16. FileBucketRegion = "file_bucket_region"
  17. FileBucketScheme = "file_bucket_scheme"
  18. FileExt = "file_ext"
  19. FileSecretKey = "file_secret_key"
  20. FileUserUploadMaxSize = "file_user_upload_max_size"
  21. FileAccessKey = "file_access_key"
  22. FileBucket = "file_bucket"
  23. AdministratorContactInfo = "administrator_contact_info"
  24. CentralKitchenForSchoolReserveMealTime = "central_kitchen_for_school_reserve_meal_time"
  25. CentralKitchenForSchoolCancelMealTime = "central_kitchen_for_school_cancel_meal_time"
  26. NursingHomeReserveMealTime = "nursing_home_reserve_meal_time"
  27. NursingHomeCancelMealTime = "nursing_home_cancel_meal_time"
  28. JsapiPayAppAutToken = "jsapi_pay_app_auth_token"
  29. JsapiPayNotifyUrl = "jsapi_pay_notify_url"
  30. WxAppletAppId = "wx_applet_app_id"
  31. WxAppletAppSecret = "wx_applet_app_secret"
  32. WxMchId = "wx_mch_id"
  33. WxSpMchApiV3Key = "wx_sp_mch_api_v3_key"
  34. WxSpMchCertificateSerialNumber = "wx_sp_mch_certificate_serial_number"
  35. WxSpAppId = "wx_sp_app_id"
  36. WxSpMchId = "wx_sp_mch_id"
  37. WxJsapiPayNotifyUrl = "wx_jsapi_pay_notify_url"
  38. WxJsapiRefundPayNotifyUrl = "wx_jsapi_refund_pay_notify_url"
  39. )
  40. func (gt SysCfg) String() string {
  41. switch gt {
  42. case AppName:
  43. return "项目名称"
  44. case OpenAlipayAesKey:
  45. return "支付宝开放平台-第三方应用-接口内容加密-aesKey"
  46. case OpenAlipayAppPrivateKey:
  47. return "支付宝开放平台-第三方应用-接口加签-应用私钥"
  48. case OpenAlipayAppPublicKey:
  49. return "支付宝开放平台-第三方应用-接口加签-应用公钥"
  50. case OpenAlipayPublicKey:
  51. return "支付宝开放平台-第三方应用-接口加签-支付宝公钥"
  52. case OpenAppletAesKey:
  53. return "支付宝开放平台-小程序-接口内容加密-aesKey"
  54. case OpenAppletAppPrivateKey:
  55. return "支付宝开放平台-小程序-接口加签-应用私钥"
  56. case OpenAppletAppPublicKey:
  57. return "支付宝开放平台-小程序-接口加签-应用公钥"
  58. case OpenAppletPublicKey:
  59. return "支付宝开放平台-小程序-接口加签-支付宝公钥"
  60. case OpenAlipayAppid:
  61. return "支付宝开放平台-第三方应用-appid"
  62. case OpenAppletAppid:
  63. return "支付宝开放平台-小程序-appid"
  64. case FileBucketHost:
  65. return "对象存储域名"
  66. case FileBucketRegion:
  67. return "文件所属区域"
  68. case FileExt:
  69. return "文件上传后缀,后台用户不限制后缀"
  70. case FileBucketScheme:
  71. return "文件上传模式"
  72. case FileSecretKey:
  73. return "对象存储SecretToken"
  74. case FileUserUploadMaxSize:
  75. return "用户单文件最大上传大小,byte"
  76. case FileAccessKey:
  77. return "对象存储AccessToken"
  78. case FileBucket:
  79. return "对象存储bucket"
  80. case AdministratorContactInfo:
  81. return "管理员联系方式"
  82. case CentralKitchenForSchoolReserveMealTime:
  83. return "央厨预定用餐时间"
  84. case CentralKitchenForSchoolCancelMealTime:
  85. return "央厨取消用餐时间"
  86. case NursingHomeReserveMealTime:
  87. return "养老院预定用餐时间"
  88. case NursingHomeCancelMealTime:
  89. return "养老院取消用餐时间"
  90. case JsapiPayAppAutToken:
  91. return "支付宝开放平台-jsapi支付-app_auth_token"
  92. case JsapiPayNotifyUrl:
  93. return "支付宝开放平台-jsapi支付-异步通知"
  94. case WxAppletAppId:
  95. return "微信-小程序-appid"
  96. case WxAppletAppSecret:
  97. return "微信-小程序-appSecret"
  98. case WxMchId:
  99. return "微信商户id"
  100. case WxSpMchApiV3Key:
  101. return "微信服务商-商户apiV3密钥"
  102. case WxSpMchCertificateSerialNumber:
  103. return "微信服务商-商户证书序列号"
  104. case WxSpAppId:
  105. return "微信服务商-appid"
  106. case WxSpMchId:
  107. return "微信服务商-商户id"
  108. case WxJsapiPayNotifyUrl:
  109. return "微信-jsapi支付-异步通知"
  110. case WxJsapiRefundPayNotifyUrl:
  111. return "微信-退款-异步通知"
  112. default:
  113. return "未知"
  114. }
  115. }