34 lines
771 B
PHP
34 lines
771 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $charge_item_id
|
|
* @property int $charge_id
|
|
* @property int $merchant_id
|
|
* @property string $item_name
|
|
* @property int $times
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class ChargeItem extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'charge_item';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['charge_item_id' => 'integer', 'charge_id' => 'integer', 'merchant_id' => 'integer', 'times' => 'integer'];
|
|
}
|