智慧食堂
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

enum_sys_cfg.go 4.5 KiB

1年前
1年前
1年前
1年前
1年前
1年前
1年前
1年前
1年前
1年前
1年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. )
  38. func (gt SysCfg) String() string {
  39. switch gt {
  40. case AppName:
  41. return "项目名称"
  42. case OpenAlipayAesKey:
  43. return "支付宝开放平台-第三方应用-接口内容加密-aesKey"
  44. case OpenAlipayAppPrivateKey:
  45. return "支付宝开放平台-第三方应用-接口加签-应用私钥"
  46. case OpenAlipayAppPublicKey:
  47. return "支付宝开放平台-第三方应用-接口加签-应用公钥"
  48. case OpenAlipayPublicKey:
  49. return "支付宝开放平台-第三方应用-接口加签-支付宝公钥"
  50. case OpenAppletAesKey:
  51. return "支付宝开放平台-小程序-接口内容加密-aesKey"
  52. case OpenAppletAppPrivateKey:
  53. return "支付宝开放平台-小程序-接口加签-应用私钥"
  54. case OpenAppletAppPublicKey:
  55. return "支付宝开放平台-小程序-接口加签-应用公钥"
  56. case OpenAppletPublicKey:
  57. return "支付宝开放平台-小程序-接口加签-支付宝公钥"
  58. case OpenAlipayAppid:
  59. return "支付宝开放平台-第三方应用-appid"
  60. case OpenAppletAppid:
  61. return "支付宝开放平台-小程序-appid"
  62. case FileBucketHost:
  63. return "对象存储域名"
  64. case FileBucketRegion:
  65. return "文件所属区域"
  66. case FileExt:
  67. return "文件上传后缀,后台用户不限制后缀"
  68. case FileBucketScheme:
  69. return "文件上传模式"
  70. case FileSecretKey:
  71. return "对象存储SecretToken"
  72. case FileUserUploadMaxSize:
  73. return "用户单文件最大上传大小,byte"
  74. case FileAccessKey:
  75. return "对象存储AccessToken"
  76. case FileBucket:
  77. return "对象存储bucket"
  78. case AdministratorContactInfo:
  79. return "管理员联系方式"
  80. case CentralKitchenForSchoolReserveMealTime:
  81. return "央厨预定用餐时间"
  82. case CentralKitchenForSchoolCancelMealTime:
  83. return "央厨取消用餐时间"
  84. case NursingHomeReserveMealTime:
  85. return "养老院预定用餐时间"
  86. case NursingHomeCancelMealTime:
  87. return "养老院取消用餐时间"
  88. case JsapiPayAppAutToken:
  89. return "支付宝开放平台-jsapi支付-app_auth_token"
  90. case JsapiPayNotifyUrl:
  91. return "支付宝开放平台-jsapi支付-异步通知"
  92. case WxAppletAppId:
  93. return "微信-小程序-appid"
  94. case WxAppletAppSecret:
  95. return "微信-小程序-appSecret"
  96. case WxMchId:
  97. return "微信商户id"
  98. case WxSpMchApiV3Key:
  99. return "微信服务商-商户apiV3密钥"
  100. case WxSpMchCertificateSerialNumber:
  101. return "微信服务商-商户证书序列号"
  102. case WxSpAppId:
  103. return "微信服务商-appid"
  104. case WxSpMchId:
  105. return "微信服务商-商户id"
  106. default:
  107. return "未知"
  108. }
  109. }