Merge branch 'dev' into branch-dev

This commit is contained in:
2025-03-07 09:09:51 +08:00
44 changed files with 3988 additions and 2 deletions

View File

@@ -13,7 +13,8 @@ use Hyperf\Tappable\HigherOrderTapProxy;
* @property int $id
* @property int $user_id
* @property string $profile
* @property string $specialties
* @property string $specialties
* @property int $kitchen_id
* @property int $is_del
* @property string $create_time
* @property string $update_time
@@ -33,7 +34,7 @@ class Chef extends Model
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['id' => 'integer', 'user_id' => 'integer', 'is_del' => 'integer'];
protected array $casts = ['id' => 'integer', 'user_id' => 'integer', 'kitchen_id' => 'integer', 'is_del' => 'integer'];
const string CREATED_AT = 'create_time';