OrderRefund.php 480 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/3/23
  6. * Time: 上午10:25
  7. */
  8. namespace app\common\models;
  9. class OrderRefund extends BaseModel
  10. {
  11. protected $casts = [
  12. 'images' => 'json',
  13. 'refund_proof_imgs' => 'json',
  14. ];
  15. protected $attributes = [
  16. 'images' => [],
  17. 'reason' => '',
  18. 'content' => '',
  19. 'reply' => '',
  20. 'refund_proof_imgs' => [],
  21. 'remark' => ''
  22. ];
  23. }