define(OrderPackage::class, function (Faker $faker) { return [ 'logistic_number' => $faker->uuid, 'order_id' => random_int(1, 10000), 'batch_number' => random_int(1, 100), 'batch_rule' => null, 'bulk' => null, 'weight' => null, 'height' => null, 'paper_box_id' => random_int(1, 100), 'measuring_machine_id' => random_int(1, 100), 'weighed_at' => now()->subHours(3), 'status' => random_int(1,8), 'sent_at' => now()->subHours(1), 'received_at' => null, 'transfer_status' => null, 'owner_id' => random_int(1, 100), 'uploaded_to_wms' => '是', 'sync_routes_flag' => false, 'is_manual_update' => false, 'exception_status' => random_int(1,6), 'is_delay_deliver' => false, ]; });