ChannelSendOrderStatisticDate.php 383 B

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