feat : finish order

This commit is contained in:
2025-04-02 17:42:06 +08:00
parent 55164bc74f
commit 62c9f20bc9
3 changed files with 89 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
<?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 string $refund_price
* @property string $create_time
* @property string $update_time
*/
class RefundStatement extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'refund_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'];
}