ywtc_api/application/member/model/BalanceWithdraw.php

26 lines
799 B
PHP

<?php
// +----------------------------------------------------------------------
// | 海豚PHP框架 [ DolphinPHP ]
// +----------------------------------------------------------------------
// | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
// +----------------------------------------------------------------------
// | 官方网站: http://dolphinphp.com
// +----------------------------------------------------------------------
namespace app\member\model;
use think\Model as ThinkModel;
/**
* 模型
* @package app\advert\model
*/
class BalanceWithdraw extends ThinkModel
{
// 设置当前模型对应的完整数据表名称
protected $name = 'member_balancewithdraw';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
}