ActivityPool.php 389 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace tw\redis;
  3. use tw\redis\traits\HashTrait;
  4. /**
  5. * 活動金池子
  6. *
  7. * 說明:
  8. * 活動池子是記錄每個活動可使用的獎金餘額,
  9. *
  10. * Hash 結構,FIELD 爲活動名稱,VALUE 爲可用金額
  11. */
  12. class ActivityPool extends Base
  13. {
  14. use HashTrait;
  15. protected function key($whatever = false): string
  16. {
  17. return 'activity:pool';
  18. }
  19. }