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.
33 lines
679 B
33 lines
679 B
2 months ago
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* // 印尼股票列表
|
||
|
* @property int id
|
||
|
* @property string stock_name
|
||
|
* @property string stock_code
|
||
|
* @property string status
|
||
|
* @property string info
|
||
|
* @property int tape
|
||
|
* @property string create_time
|
||
|
* @property string update_time
|
||
|
* @property float forced_closure
|
||
|
* @property float keep_decimal
|
||
|
* @property float up_limit
|
||
|
* @property float down_limit
|
||
|
*/
|
||
|
class StockIdnListModel extends BaseModel
|
||
|
{
|
||
|
|
||
|
// 印尼股票列表 数据表
|
||
|
protected $name = 'stock_idn_list';
|
||
|
protected $pk = 'id';
|
||
|
|
||
|
// 交易所类型
|
||
|
const TAPE_IDX = '1';
|
||
|
public static $tapeList = [
|
||
|
self::TAPE_IDX => 'IDX',
|
||
|
];
|
||
|
}
|