RedBag.php 306 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. /**
  4. *
  5. */
  6. class RedBag extends BaseModel {
  7. protected $table = 'redBag';
  8. public $timestamps = false;
  9. function getRedBagType(){
  10. return array(
  11. '1'=>'亏损还利',
  12. '2'=>'晋级彩金',
  13. '3'=>'好运彩金',
  14. );
  15. }
  16. }
  17. ?>