附近小店
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.

10 maanden geleden
10 maanden geleden
10 maanden geleden
10 maanden geleden
10 maanden geleden
10 maanden geleden
1234567891011121314151617181920212223
  1. package md
  2. // 获取用户的缓存key
  3. const (
  4. KEY_SYS_CFG_CACHE = "sys_cfg_cache"
  5. KEY_CFG_CRON_COMMUNITY_TEAM_ORDER_CANCEL = "community_team_cron_order_cancel"
  6. KEY_CFG_CRON_COMMUNITY_TEAM_ORDER_STORE_SETTLE = "community_team_cron_order_store_settle"
  7. KEY_CFG_CRON_COMMUNITY_TEAM_ORDER_SETTLE = "community_team_cron_order_settle"
  8. KEY_CFG_CRON_COMMUNITY_TEAM_ORDER_COMMISSION = "community_team_cron_order_commission"
  9. // 文件缓存的key
  10. KEY_CFG_FILE_PVD = "file_provider" // 文件供应商
  11. KEY_CFG_FILE_BUCKET = "file_bucket"
  12. KEY_CFG_FILE_REGION = "file_bucket_region"
  13. KEY_CFG_FILE_HOST = "file_bucket_host"
  14. KEY_CFG_FILE_SCHEME = "file_bucket_scheme"
  15. KEY_CFG_FILE_AK = "file_access_key"
  16. KEY_CFG_FILE_SK = "file_secret_key"
  17. KEY_CFG_FILE_MAX_SIZE = "file_user_upload_max_size"
  18. KEY_CFG_FILE_EXT = "file_ext"
  19. KEY_CFG_FILE_AVATAR_THUMBNAIL = "file_avatar_thumbnail" // 默认头像缩略图参数,宽高120px,格式webp.
  20. )