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.
18 lines
272 B
18 lines
272 B
3 months ago
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @property int id
|
||
|
* @property string stock_code
|
||
|
* @property string history_info
|
||
|
*/
|
||
|
|
||
|
class HistoryFundStockModel extends BaseModel
|
||
|
{
|
||
|
// 基金 历史走势
|
||
|
protected $name = 'history_fund_stock';
|
||
|
protected $pk = 'id';
|
||
|
}
|