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.
24 lines
467 B
24 lines
467 B
2 months ago
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
/**
|
||
|
* @property string $code
|
||
|
* @property string $country
|
||
|
* @property string $currency
|
||
|
* @property string $exchange
|
||
|
* @property string $intro
|
||
|
* @property string $name
|
||
|
* @property string $update_time
|
||
|
* @property int $status
|
||
|
* @property int $sort
|
||
|
*/
|
||
|
class StockIndexModel extends BaseModel
|
||
|
{
|
||
|
protected $name = 'stock_index';
|
||
|
protected $pk = 'id';
|
||
|
|
||
|
// 交易所类型
|
||
|
const STATUS_ON = 1;
|
||
|
const STATUS_OFF = 2;
|
||
|
}
|