vd/app/Models/Real/FlowPool.php
2019-02-25 22:54:43 +08:00

17 lines
260 B
PHP

<?php
namespace App\Models\Real;
use App\Core\Model;
use App\Models\Card\Card;
class FlowPool extends Model
{
protected $table = 'real_flow_pools';
protected $casts = [
'product_ids' => 'array',
'real_pool_ids' => 'array',
];
}