Order.php 624 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2020/8/13
  6. * Time: 11:58
  7. */
  8. namespace App\Modules\Order\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class Order extends Model
  11. {
  12. protected $table = 'orders';
  13. protected $fillable = [
  14. 'uid', 'product_id', 'price', 'status', 'pay_type', 'trade_no', 'send_order_id', 'send_order_name',
  15. 'transaction_id', 'distribution_channel_id', 'pay_end_at', 'create_ip', 'u', 'pay_merchant_source', 'pay_merchant_id', 'from_bid', 'order_type',
  16. 'activity_id','from_type','inner_send_order_id'
  17. ];
  18. protected $connection = 'api_mysql';
  19. }