* @license GPL https://xxx.com * @link https://xxx.com * @ctime: 2020/4/15 14:24 */ namespace App\Models; class InviteNewUsersGiveGiftLog extends Model { protected $table = 'invite_new_users_give_gift_logs'; protected $fillable = ['user_id', 'invite_new_users_configs_id', 'gift_type', 'gift_id', 'gift_num']; protected $guarded = []; const GIFT_TYPE_CARD = 'card'; const GIFT_TYPE_COUPON = 'coupon'; const GIFT_TYPE_BALANCE = 'balance'; public static $giftTypeMaps = [ self::GIFT_TYPE_CARD => '骑行卡', self::GIFT_TYPE_COUPON => '优惠券', self::GIFT_TYPE_BALANCE => '余额', ]; }