OrderRefund.php 185 B

12345678910111213
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class OrderRefund extends Model
  5. {
  6. protected $connection = 'mysql';
  7. protected $pk = 'id';
  8. protected $name = 'order_refund';
  9. }