OrderRefundAddress.php 369 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. *
  4. * @copyright ©2020 点小铺
  5. * @author hanj
  6. * @link: https://dyuit.com
  7. * Created by VSCode
  8. */
  9. namespace app\common\model;
  10. /**
  11. * 售后单退货地址模型
  12. * Class OrderRefundAddress
  13. * @package app\common\model
  14. */
  15. class OrderRefundAddress extends BaseModel
  16. {
  17. protected $name = 'order_refund_address';
  18. protected $updateTime = false;
  19. }