bourse stock
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
457 B

2 months ago
<?php
namespace app\model;
/**
* 股票盘前价格
* @property int $id
* @property int $market_type
* @property int $stock_id
* @property int $status
* @property string $price
* @property string $create_time
* @property string $update_time
*/
class StockPricesSettingModel extends BaseModel
{
// 股票盘前价格
protected $name = 'stock_prices_setting';
protected $pk = 'id';
const STATUS_ON = 1;
const STATUS_OFF = 2;
}