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.
17 lines
272 B
17 lines
272 B
<?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';
|
|
}
|
|
|