RefundAddress.php 191 B

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