1234567891011121314151617181920 |
- <?php
- namespace App\Modules\Order\Models;
- use Illuminate\Database\Eloquent\Model;
- class ChannelSendOrderStatistic extends Model
- {
- protected $table = 'channel_send_order_statistic';
- protected $fillable = [
- 'channel_id',
- 'send_order_id',
- 'first_pay_time',
- 'amount',
- 'user_amount',
- 'created_at',
- 'updated_at',
- ];
- }
|