| 1234567891011121314151617181920212223242526 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- class Statistics extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_cfx_data';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
-
-
-
- }
|