23 lines
366 B
PHP
23 lines
366 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: swl
|
|
* Date: 2018/7/3
|
|
* Time: 10:23
|
|
*/
|
|
|
|
namespace App;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UsersWalletWithdraw extends Model
|
|
{
|
|
protected $table = 'users_wallet_withdraw';
|
|
public $timestamps = true;
|
|
const CREATED_AT = 'create_time';
|
|
const UPDATED_AT = 'update_time';
|
|
|
|
}
|