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