gamebackend/application/common/model/CurrencyWithdraw.php

34 lines
867 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | 作者:修缘 联系QQ278896498 QQ群1054861244
// | 声明:未经作者许可,禁止倒卖等商业运营,违者必究
// | 另接php业务网站制作、代理后台、gm后台、支付对接等
// +----------------------------------------------------------------------
// | 创建时间: 2022/1/7 14:12
// +----------------------------------------------------------------------
namespace app\common\model;
class CurrencyWithdraw extends Model
{
// 自定义选择数据
public $softDelete = false;
protected $table = 'qy_currency_withdraw';
//可搜索字段
protected $searchField = [];
//可作为条件的字段
protected $whereField = [];
//可做为时间
protected $timeField = [];
}