dggmyyc/application/common/model/WithdrawAccount.php

16 lines
246 B
PHP
Executable File

<?php
/**
* 提现账户记录表
*/
namespace app\common\model;
use think\model\concern\SoftDelete;
class WithdrawAccount extends Model
{
protected $name = 'withdraw_account';
protected $autoWriteTimestamp = true;
}