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.
30 lines
545 B
30 lines
545 B
2 months ago
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* // 美股列表
|
||
|
* @property int id
|
||
|
* @property string stock_name
|
||
|
* @property string stock_code
|
||
|
* @property string status
|
||
|
* @property int tape
|
||
|
* @property string info
|
||
|
* @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 UserArrearsModel extends BaseModel
|
||
|
{
|
||
|
|
||
|
// 美股列表 数据表
|
||
|
protected $name = 'user_arrears';
|
||
|
protected $pk = 'id';
|
||
|
|
||
|
|
||
|
|
||
|
}
|