| 123456789101112131415161718192021 |
- <?php
- /**
- *------Create thems Model------
- *------SCWPHP Version 1.0.0------
- *------Dev Model Jions------
- *------Create Time 2017-06-13 18:45:24------
- */
- namespace App\Commons\Model;
- use \System\Model;
- class Money_buy_detail extends Model {
- protected $table = 'money_buy_detail';
- public function getById($id){
- return self::get($id);
- }
- }
|