新增自动开具处方。修改ca对接
This commit is contained in:
@@ -14,14 +14,12 @@ use Hyperf\Snowflake\Concern\Snowflake;
|
||||
* @property int $prescription_file_id 主键id
|
||||
* @property int $order_prescription_id 订单-处方id
|
||||
* @property string $doctor_ca_file_id 医生签章pdf文件id(可请求ca下载)
|
||||
* @property string $doctor_pdf_oss_path 医生签章pdf文件oss路径(null表示未下载)
|
||||
* @property int $doctor_pdf_down_status 签章文件下载状态(0:未下载 1:已下载 2:下载失败)
|
||||
* @property string $doctor_pdf_down_fail_reason 下载失败原因
|
||||
* @property string $doctor_img_oss_path 医生签章img文件oss路径
|
||||
* @property string $hospital_ca_file_id 医院签章pdf文件id(可请求ca下载)
|
||||
* @property string $hospital_pdf_oss_path 医院签章pdf文件oss路径(null表示未下载)
|
||||
* @property int $hospital_pdf_down_status 签章文件下载状态(0:未下载 1:已下载 2:下载失败)
|
||||
* @property string $hospital_pdf_down_fail_reason 下载失败原因
|
||||
* @property string $prescription_img_oss_path 签章img文件oss路径
|
||||
* @property string $prescription_pdf_oss_path 签章pdf文件oss路径
|
||||
* @property string $doctor_sign_image_path 医生签名图片oss地址
|
||||
* @property string $pharmacist_sign_image_path 药师签名图片oss地址
|
||||
* @property string $hospital_sign_image_path 医院签名图片oss地址
|
||||
* @property \Carbon\Carbon $created_at 创建时间
|
||||
* @property \Carbon\Carbon $updated_at 修改时间
|
||||
*/
|
||||
@@ -37,7 +35,7 @@ class OrderPrescriptionFile extends Model
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected array $fillable = ['prescription_file_id', 'order_prescription_id', 'doctor_ca_file_id', 'doctor_pdf_oss_path', 'doctor_pdf_down_status', 'doctor_pdf_down_fail_reason', 'doctor_img_oss_path', 'hospital_ca_file_id', 'hospital_pdf_oss_path', 'hospital_pdf_down_status', 'hospital_pdf_down_fail_reason', 'created_at', 'updated_at'];
|
||||
protected array $fillable = ['prescription_file_id', 'order_prescription_id', 'doctor_ca_file_id', 'hospital_ca_file_id', 'prescription_img_oss_path', 'prescription_pdf_oss_path', 'doctor_sign_image_path', 'pharmacist_sign_image_path', 'hospital_sign_image_path', 'created_at', 'updated_at'];
|
||||
|
||||
protected string $primaryKey = "prescription_file_id";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user