BankRecharge.php 424 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 用户银行表 Table<ai_popupshop_bank_recharge>
  7. */
  8. namespace app\popupshop\model;
  9. use think\Model;
  10. use think\facade\Validate;
  11. class BankRecharge extends Model{
  12. protected $table = 'ai_popupshop_bank_recharge';
  13. }