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

27 lines
615 B
PHTML

2 years ago
<?php
declare(strict_types=1);
namespace App\Model;
class RebateGift extends Model
{
protected $table = 'tab_rebate_gifts';
protected $casts = [
'config' => 'array',
];
public $typeDisplayNames = [
'A' => '单笔充值福利',
'B' => '月卡福利发放',
'C' => '累充福利发放',
'D' => '首充福利发放',
'E' => '单日累充福利发放',
'F' => '周卡福利发放',
'G' => '首次进游福利',
'H' => '签到福利发放',
'I' => '充值返利发放',
1 year ago
'J' => '等级福利发放',
2 years ago
];
}