34 lines
679 B
PHP
34 lines
679 B
PHP
|
<?php
|
||
|
|
||
|
namespace plugin\admin\app\model;
|
||
|
|
||
|
use plugin\admin\app\model\Base;
|
||
|
|
||
|
/**
|
||
|
* @property integer $id 主键(主键)
|
||
|
* @property string $created_at 创建时间
|
||
|
* @property string $updated_at 更新时间
|
||
|
* @property integer $amount 金额
|
||
|
* @property integer $status 是否同意由该组组长审核0未审1通过2未通过
|
||
|
* @property string $remark 备注
|
||
|
*/
|
||
|
class Timecoinreview extends Base
|
||
|
{
|
||
|
/**
|
||
|
* The table associated with the model.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $table = 'timecoinreview';
|
||
|
|
||
|
/**
|
||
|
* The primary key associated with the table.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $primaryKey = 'id';
|
||
|
|
||
|
|
||
|
|
||
|
}
|