ReturnExpress.php 337 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/3/23
  6. * Time: 上午10:49
  7. */
  8. namespace app\common\models\refund;
  9. use app\common\models\BaseModel;
  10. class ReturnExpress extends BaseModel
  11. {
  12. protected $fillable = [];
  13. protected $guarded = ['id'];
  14. public $table = 'yz_return_express';
  15. }