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

reward_redis_key.go 193 B

3 years ago
1234567
  1. package redis_key
  2. const REWARD_REDIS_PREFIX = "reward"
  3. func RewardSendLock(requestId string, sourceType string) string {
  4. return KeyJoin(REWARD_REDIS_PREFIX, requestId, sourceType, "send")
  5. }