You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
424 B
23 lines
424 B
<?php
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2020/7/8
|
|
* Time: 10:55
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class PlatformContractControl extends Model
|
|
{
|
|
//#合约持仓信息
|
|
|
|
protected $primaryKey = 'id';
|
|
protected $table = 'platform_contract_control';
|
|
protected $guarded = [];
|
|
}
|
|
|