新增 获取患者检测订单详情 接口

This commit is contained in:
2023-08-01 17:35:24 +08:00
parent 15738f0c5a
commit 3732976a2b
4 changed files with 181 additions and 69 deletions
+2 -1
View File
@@ -11,6 +11,7 @@ use Hyperf\Snowflake\Concern\Snowflake;
/**
* @property int $detection_project_id 主键id
* @property string $detection_project_title 检测项目标题
* @property string $detection_project_name 检测项目名称
* @property int $company_id 合作公司id
* @property string $detection_project_price 检测价格
@@ -30,7 +31,7 @@ class DetectionProject extends Model
/**
* The attributes that are mass assignable.
*/
protected array $fillable = ['detection_project_id', 'detection_project_name', 'company_id', 'detection_project_price', 'img_path', 'created_at', 'updated_at'];
protected array $fillable = ['detection_project_id', 'detection_project_title', 'detection_project_name', 'company_id', 'detection_project_price', 'img_path', 'created_at', 'updated_at'];
protected string $primaryKey = "detection_project_id";