后端: - 4个迁移文件新增23张业务表 - 23个Eloquent Model(含关联/类型转换/门店隔离) - 20个Controller(含CRUD+业务操作: 合同审核/入住退房/护理异常处理等) - 110+条API路由(crm/room/care/meal四大前缀) 前端: - 4个API模块(crm.js/room.js/care.js/meal.js) - 13个业务页面(线索/客户/合同/渠道/投诉/房型/房间/预定/护理档案/护理计划/护理记录/菜品/排餐)
41 lines
907 B
PHP
41 lines
907 B
PHP
<?php
|
|
|
|
namespace App\Models\Care;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class CareRecord extends Model
|
|
{
|
|
protected $fillable = [
|
|
'care_profile_id', 'care_plan_id', 'type',
|
|
'items', 'remark', 'images', 'nurse_id', 'recorded_at',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'type' => 'integer',
|
|
'items' => 'array',
|
|
'images' => 'array',
|
|
'recorded_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
public function profile(): BelongsTo
|
|
{
|
|
return $this->belongsTo(CareProfile::class, 'care_profile_id');
|
|
}
|
|
|
|
public function plan(): BelongsTo
|
|
{
|
|
return $this->belongsTo(CarePlan::class, 'care_plan_id');
|
|
}
|
|
|
|
public function nurse(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'nurse_id');
|
|
}
|
|
}
|