ChannelSendOrderStatistic.php 384 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Modules\Order\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ChannelSendOrderStatistic extends Model
  5. {
  6. protected $table = 'channel_send_order_statistic';
  7. protected $fillable = [
  8. 'channel_id',
  9. 'send_order_id',
  10. 'first_pay_time',
  11. 'amount',
  12. 'user_amount',
  13. 'created_at',
  14. 'updated_at',
  15. ];
  16. }