feat : deliver
This commit is contained in:
40
app/Model/SiteDriverStatement.php
Normal file
40
app/Model/SiteDriverStatement.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Model;
|
||||
|
||||
use Hyperf\DbConnection\Model\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $date
|
||||
* @property int $cycle_id
|
||||
* @property int $kitchen_id
|
||||
* @property int $site_id
|
||||
* @property int $driver_id
|
||||
* @property int $option_order_number
|
||||
* @property int $option_copies
|
||||
* @property int $option_add_staple_food_num
|
||||
* @property int $meal_order_number
|
||||
* @property int $meal_copies
|
||||
* @property int $meal_add_staple_food_num
|
||||
* @property string $create_time
|
||||
*/
|
||||
class SiteDriverStatement extends Model
|
||||
{
|
||||
/**
|
||||
* The table associated with the model.
|
||||
*/
|
||||
protected ?string $table = 'site_driver_statement';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected array $fillable = [];
|
||||
|
||||
/**
|
||||
* The attributes that should be cast to native types.
|
||||
*/
|
||||
protected array $casts = ['id' => 'integer', 'cycle_id' => 'integer', 'kitchen_id' => 'integer', 'site_id' => 'integer', 'driver_id' => 'integer', 'option_order_number' => 'integer', 'option_copies' => 'integer', 'option_add_staple_food_num' => 'integer', 'meal_order_number' => 'integer', 'meal_copies' => 'integer', 'meal_add_staple_food_num' => 'integer'];
|
||||
}
|
||||
Reference in New Issue
Block a user