|
@@ -22,7 +22,7 @@
|
|
|
combined_medication_other_adverse_reactions_handling = #{combinedMedicationOtherAdverseReactionsHandling},
|
|
|
</if>
|
|
|
<!-- 是否复查 -->
|
|
|
- <if test="isReview != null">
|
|
|
+ <if test="isReview != null and isReview != ''">
|
|
|
is_review = #{isReview},
|
|
|
</if>
|
|
|
<!-- 影像学检查 医保类型 -->
|
|
@@ -122,16 +122,16 @@
|
|
|
treatment_type = #{treatmentType},
|
|
|
</if>
|
|
|
<!-- 用药前治疗方案 -->
|
|
|
- <if test="preMedicationPlan != null and preMedicationPlan != ''">
|
|
|
- pre_medication_plan = #{preMedicationPlan},
|
|
|
+ <if test="pre_medication_plan != null and pre_medication_plan != ''">
|
|
|
+ pre_medication_plan = #{pre_medication_plan},
|
|
|
</if>
|
|
|
<!-- 目前治疗方案 -->
|
|
|
- <if test="currentTreatmentPlan != null and currentTreatmentPlan != ''">
|
|
|
- current_treatment_plan = #{currentTreatmentPlan},
|
|
|
+ <if test="current_treatment_plan != null and current_treatment_plan != ''">
|
|
|
+ current_treatment_plan = #{current_treatment_plan},
|
|
|
</if>
|
|
|
<!-- 进展后治疗方案 -->
|
|
|
- <if test="postProgressionTreatmentPlan != null and postProgressionTreatmentPlan != ''">
|
|
|
- post_progression_treatment_plan = #{postProgressionTreatmentPlan},
|
|
|
+ <if test="post_progression_treatment_plan != null and post_progression_treatment_plan != ''">
|
|
|
+ post_progression_treatment_plan = #{post_progression_treatment_plan},
|
|
|
</if>
|
|
|
<!-- 有无药品适应症 -->
|
|
|
<if test="hasMedicationIndications != null">
|
|
@@ -211,19 +211,19 @@
|
|
|
</if>
|
|
|
<!-- 共建项目描述 -->
|
|
|
<if test="projectDescription != null">
|
|
|
- project_description = #{projectDescription},
|
|
|
+ project_description = #{projectDFescription},
|
|
|
</if>
|
|
|
<!-- 更新时间 -->
|
|
|
updatedTime = CURRENT_TIMESTAMP,
|
|
|
</set>
|
|
|
- WHERE id = #{id}
|
|
|
+ WHERE id = #{follow_up_id}
|
|
|
</update>
|
|
|
<!-- 随访记录全量表 添加-->
|
|
|
<insert id="insertSGxhpzFollowUpRecords" parameterType="pd">
|
|
|
- INSERT INTO s_gxhpz_follow_up_records (
|
|
|
+ INSERT INTO s_gxhpz_follow_up_records
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<!-- 合并用药是否引起不良反应 -->
|
|
|
- <if test="combinedMedicationAdverseReaction != null">
|
|
|
+ <if test="combinedMedicationAdverseReaction != null and combinedMedicationAdverseReaction != ''">
|
|
|
combined_medication_adverse_reaction,
|
|
|
</if>
|
|
|
<!-- 合并用药其他不良反应 -->
|
|
@@ -239,7 +239,7 @@
|
|
|
combined_medication_other_adverse_reactions_handling,
|
|
|
</if>
|
|
|
<!-- 是否复查 -->
|
|
|
- <if test="isReview != null">
|
|
|
+ <if test="isReview != null and isReview != ''">
|
|
|
is_review,
|
|
|
</if>
|
|
|
<!-- 影像学检查 医保类型 -->
|
|
@@ -247,7 +247,7 @@
|
|
|
imaging_insurance_type,
|
|
|
</if>
|
|
|
<!-- CT 单选 -->
|
|
|
- <if test="ctCheck != null">
|
|
|
+ <if test="ctCheck != null and ctCheck != ''">
|
|
|
ct_check,
|
|
|
</if>
|
|
|
<!-- CT文本 -->
|
|
@@ -255,7 +255,7 @@
|
|
|
ct_text,
|
|
|
</if>
|
|
|
<!-- B超 单选 -->
|
|
|
- <if test="ultrasoundCheck != null">
|
|
|
+ <if test="ultrasoundCheck != null and ultrasoundCheck != ''">
|
|
|
ultrasound_check,
|
|
|
</if>
|
|
|
<!-- B超文本 -->
|
|
@@ -263,7 +263,7 @@
|
|
|
ultrasound_text,
|
|
|
</if>
|
|
|
<!-- 核磁 单选 -->
|
|
|
- <if test="mriCheck != null">
|
|
|
+ <if test="mriCheck != null and mriCheck != ''">
|
|
|
mri_check,
|
|
|
</if>
|
|
|
<!-- 核磁文本 -->
|
|
@@ -339,75 +339,75 @@
|
|
|
treatment_type,
|
|
|
</if>
|
|
|
<!-- 用药前治疗方案 -->
|
|
|
- <if test="preMedicationPlan != null and preMedicationPlan != ''">
|
|
|
+ <if test="pre_medication_plan != null and pre_medication_plan != ''">
|
|
|
pre_medication_plan,
|
|
|
</if>
|
|
|
<!-- 目前治疗方案 -->
|
|
|
- <if test="currentTreatmentPlan != null and currentTreatmentPlan != ''">
|
|
|
+ <if test="current_treatment_plan != null and current_treatment_plan != ''">
|
|
|
current_treatment_plan,
|
|
|
</if>
|
|
|
<!-- 进展后治疗方案 -->
|
|
|
- <if test="postProgressionTreatmentPlan != null and postProgressionTreatmentPlan != ''">
|
|
|
+ <if test="post_progression_treatment_plan != null and post_progression_treatment_plan != ''">
|
|
|
post_progression_treatment_plan,
|
|
|
</if>
|
|
|
<!-- 有无药品适应症 -->
|
|
|
- <if test="hasMedicationIndications != null">
|
|
|
+ <if test="hasMedicationIndications != null and hasMedicationIndications != ''">
|
|
|
has_medication_indications,
|
|
|
</if>
|
|
|
<!-- 药物对该疾病是否有效 -->
|
|
|
- <if test="drugEffectiveness != null">
|
|
|
+ <if test="drugEffectiveness != null and drugEffectiveness != ''">
|
|
|
drug_effectiveness,
|
|
|
</if>
|
|
|
<!-- 药物间是否存在临床相互作用 -->
|
|
|
- <if test="clinicalInteraction != null">
|
|
|
+ <if test="clinicalInteraction != null and clinicalInteraction != ''">
|
|
|
clinical_interaction,
|
|
|
</if>
|
|
|
<!-- 请描述临床相互作用 -->
|
|
|
- <if test="clinicalInteractionDescription != null">
|
|
|
+ <if test="clinicalInteractionDescription != null and clinicalInteractionDescription != ''">
|
|
|
clinical_interaction_description,
|
|
|
</if>
|
|
|
<!-- 是否有不必要重复用药 -->
|
|
|
- <if test="unnecessaryRepeatedMedication != null">
|
|
|
+ <if test="unnecessaryRepeatedMedication != null and unnecessaryRepeatedMedication != ''">
|
|
|
unnecessary_repeated_medication,
|
|
|
</if>
|
|
|
<!-- 重复用药首次使用日期 -->
|
|
|
- <if test="repeatedMedicationFirstUseDate != null">
|
|
|
+ <if test="repeatedMedicationFirstUseDate != null and repeatedMedicationFirstUseDate != ''">
|
|
|
repeated_medication_first_use_date,
|
|
|
</if>
|
|
|
<!-- 请描述不必要重复用药 -->
|
|
|
- <if test="unnecessaryRepeatedMedicationDescription != null">
|
|
|
+ <if test="unnecessaryRepeatedMedicationDescription != null and unnecessaryRepeatedMedicationDescription != ''">
|
|
|
unnecessary_repeated_medication_description,
|
|
|
</if>
|
|
|
<!-- 是否出现用药错误 -->
|
|
|
- <if test="medicationError != null">
|
|
|
+ <if test="medicationError != null and medicationError != ''">
|
|
|
medication_error,
|
|
|
</if>
|
|
|
<!-- 用药错误出现时间 -->
|
|
|
- <if test="medicationErrorTime != null">
|
|
|
+ <if test="medicationErrorTime != null and medicationErrorTime != ''">
|
|
|
medication_error_time,
|
|
|
</if>
|
|
|
<!-- 请描述用药错误 -->
|
|
|
- <if test="medicationErrorDescription != null">
|
|
|
+ <if test="medicationErrorDescription != null and medicationErrorDescription != ''">
|
|
|
medication_error_description,
|
|
|
</if>
|
|
|
<!-- 用药记录 -->
|
|
|
- <if test="medicationRecord != null">
|
|
|
+ <if test="medicationRecord != null and medicationRecord != ''">
|
|
|
medication_record,
|
|
|
</if>
|
|
|
<!-- 合并用药记录 -->
|
|
|
- <if test="combinedMedicationRecord != null">
|
|
|
+ <if test="combinedMedicationRecord != null and combinedMedicationRecord != ''">
|
|
|
combined_medication_record,
|
|
|
</if>
|
|
|
<!-- 疼痛标准评分NRS -->
|
|
|
- <if test="painNrsScore != null">
|
|
|
+ <if test="painNrsScore != null and painNrsScore != ''">
|
|
|
pain_nrs_score,
|
|
|
</if>
|
|
|
<!-- 体力状况评分 -->
|
|
|
- <if test="physicalConditionScore != null">
|
|
|
+ <if test="physicalConditionScore != null and physicalConditionScore != ''">
|
|
|
physical_condition_score,
|
|
|
</if>
|
|
|
<!-- 本次回访是否咨询 -->
|
|
|
- <if test="isConsultation != null">
|
|
|
+ <if test="isConsultation != null and isConsultation != ''">
|
|
|
is_consultation,
|
|
|
</if>
|
|
|
<!-- 咨询问题类型 -->
|
|
@@ -419,44 +419,44 @@
|
|
|
specific_question,
|
|
|
</if>
|
|
|
<!-- 药师解答 -->
|
|
|
- <if test="pharmacistResponse != null">
|
|
|
+ <if test="pharmacistResponse != null and pharmacistResponse != ''">
|
|
|
pharmacist_response,
|
|
|
</if>
|
|
|
<!-- 患者病情评估 -->
|
|
|
- <if test="patientConditionAssessment != null">
|
|
|
+ <if test="patientConditionAssessment != null and patientConditionAssessment != ''">
|
|
|
patient_condition_assessment,
|
|
|
</if>
|
|
|
<!-- 共建项目描述 -->
|
|
|
- <if test="projectDescription != null">
|
|
|
+ <if test="projectDescription != null and projectDescription != ''">
|
|
|
project_description,
|
|
|
</if>
|
|
|
<!-- 任务id -->
|
|
|
- <if test="taskId != null and taskId != ''">
|
|
|
- task_id,
|
|
|
+ <if test="id != null and id != ''">
|
|
|
+ taskId,
|
|
|
</if>
|
|
|
<!-- 计划ID -->
|
|
|
<if test="planId != null and planId != ''">
|
|
|
- plan_id,
|
|
|
+ planId,
|
|
|
</if>
|
|
|
<!-- 患者id -->
|
|
|
<if test="patientId != null and patientId != ''">
|
|
|
- patient_id,
|
|
|
+ patientId,
|
|
|
</if>
|
|
|
<!-- 门店id -->
|
|
|
- <if test="storeId != null and storeId != ''">
|
|
|
- store_id,
|
|
|
+ <if test="storeId != null">
|
|
|
+ storeId,
|
|
|
</if>
|
|
|
<!-- 创建时间 -->
|
|
|
- created_time,
|
|
|
- <!-- 更新时间 -->
|
|
|
- updated_time,
|
|
|
+ <if test="createdTime != null and createdTime != ''">
|
|
|
+ createdTime,
|
|
|
+ </if>
|
|
|
<!-- 操作人 -->
|
|
|
operator
|
|
|
</trim>
|
|
|
- ) VALUES (
|
|
|
+ VALUES
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<!-- 合并用药是否引起不良反应 -->
|
|
|
- <if test="combinedMedicationAdverseReaction != null">
|
|
|
+ <if test="combinedMedicationAdverseReaction != null and combinedMedicationAdverseReaction != ''">
|
|
|
#{combinedMedicationAdverseReaction},
|
|
|
</if>
|
|
|
<!-- 合并用药其他不良反应 -->
|
|
@@ -472,7 +472,7 @@
|
|
|
#{combinedMedicationOtherAdverseReactionsHandling},
|
|
|
</if>
|
|
|
<!-- 是否复查 -->
|
|
|
- <if test="isReview != null">
|
|
|
+ <if test="isReview != null and isReview != ''">
|
|
|
#{isReview},
|
|
|
</if>
|
|
|
<!-- 影像学检查 医保类型 -->
|
|
@@ -480,7 +480,7 @@
|
|
|
#{imagingInsuranceType},
|
|
|
</if>
|
|
|
<!-- CT 单选 -->
|
|
|
- <if test="ctCheck != null">
|
|
|
+ <if test="ctCheck != null and ctCheck != ''">
|
|
|
#{ctCheck},
|
|
|
</if>
|
|
|
<!-- CT文本 -->
|
|
@@ -488,7 +488,7 @@
|
|
|
#{ctText},
|
|
|
</if>
|
|
|
<!-- B超 单选 -->
|
|
|
- <if test="ultrasoundCheck != null">
|
|
|
+ <if test="ultrasoundCheck != null and ultrasoundCheck != ''">
|
|
|
#{ultrasoundCheck},
|
|
|
</if>
|
|
|
<!-- B超文本 -->
|
|
@@ -496,7 +496,7 @@
|
|
|
#{ultrasoundText},
|
|
|
</if>
|
|
|
<!-- 核磁 单选 -->
|
|
|
- <if test="mriCheck != null">
|
|
|
+ <if test="mriCheck != null and mriCheck != ''">
|
|
|
#{mriCheck},
|
|
|
</if>
|
|
|
<!-- 核磁文本 -->
|
|
@@ -572,123 +572,135 @@
|
|
|
#{treatmentType},
|
|
|
</if>
|
|
|
<!-- 用药前治疗方案 -->
|
|
|
- <if test="preMedicationPlan != null and preMedicationPlan != ''">
|
|
|
- #{preMedicationPlan},
|
|
|
+ <if test="pre_medication_plan != null and pre_medication_plan != ''">
|
|
|
+ #{pre_medication_plan},
|
|
|
</if>
|
|
|
<!-- 目前治疗方案 -->
|
|
|
- <if test="currentTreatmentPlan != null and currentTreatmentPlan != ''">
|
|
|
- #{currentTreatmentPlan},
|
|
|
+ <if test="current_treatment_plan != null and current_treatment_plan != ''">
|
|
|
+ #{current_treatment_plan},
|
|
|
</if>
|
|
|
<!-- 进展后治疗方案 -->
|
|
|
- <if test="postProgressionTreatmentPlan != null and postProgressionTreatmentPlan != ''">
|
|
|
- #{postProgressionTreatmentPlan},
|
|
|
+ <if test="post_progression_treatment_plan != null and post_progression_treatment_plan != ''">
|
|
|
+ #{post_progression_treatment_plan},
|
|
|
</if>
|
|
|
<!-- 有无药品适应症 -->
|
|
|
- <if test="hasMedicationIndications != null">
|
|
|
+ <if test="hasMedicationIndications != null and hasMedicationIndications != ''">
|
|
|
#{hasMedicationIndications},
|
|
|
</if>
|
|
|
<!-- 药物对该疾病是否有效 -->
|
|
|
- <if test="drugEffectiveness != null">
|
|
|
+ <if test="drugEffectiveness != null and drugEffectiveness != ''">
|
|
|
#{drugEffectiveness},
|
|
|
</if>
|
|
|
<!-- 药物间是否存在临床相互作用 -->
|
|
|
- <if test="clinicalInteraction != null">
|
|
|
+ <if test="clinicalInteraction != null and clinicalInteraction != ''">
|
|
|
#{clinicalInteraction},
|
|
|
</if>
|
|
|
<!-- 请描述临床相互作用 -->
|
|
|
- <if test="clinicalInteractionDescription != null">
|
|
|
- #{clinical_interaction_description},
|
|
|
+ <if test="clinicalInteractionDescription != null and clinicalInteractionDescription != ''">
|
|
|
+ #{clinicalInteractionDescription},
|
|
|
</if>
|
|
|
- <if test="unnecessaryRepeatedMedication != null">
|
|
|
- unnecessary_repeated_medication = #{unnecessaryRepeatedMedication},
|
|
|
+ <if test="unnecessaryRepeatedMedication != null and unnecessaryRepeatedMedication != ''">
|
|
|
+ #{unnecessaryRepeatedMedication},
|
|
|
</if>
|
|
|
<!-- 重复用药首次使用日期 -->
|
|
|
- <if test="repeatedMedicationFirstUseDate != null">
|
|
|
- repeated_medication_first_use_date = #{repeatedMedicationFirstUseDate},
|
|
|
+ <if test="repeatedMedicationFirstUseDate != null and repeatedMedicationFirstUseDate != ''">
|
|
|
+ #{repeatedMedicationFirstUseDate},
|
|
|
</if>
|
|
|
<!-- 请描述不必要重复用药 -->
|
|
|
- <if test="unnecessaryRepeatedMedicationDescription != null">
|
|
|
- unnecessary_repeated_medication_description = #{unnecessaryRepeatedMedicationDescription},
|
|
|
+ <if test="unnecessaryRepeatedMedicationDescription != null and unnecessaryRepeatedMedicationDescription != ''">
|
|
|
+ #{unnecessaryRepeatedMedicationDescription},
|
|
|
</if>
|
|
|
<!-- 是否出现用药错误 -->
|
|
|
- <if test="medicationError != null">
|
|
|
- medication_error = #{medicationError},
|
|
|
+ <if test="medicationError != null and medicationError != ''">
|
|
|
+ #{medicationError},
|
|
|
</if>
|
|
|
<!-- 用药错误出现时间 -->
|
|
|
- <if test="medicationErrorTime != null">
|
|
|
- medication_error_time = #{medicationErrorTime},
|
|
|
+ <if test="medicationErrorTime != null and medicationErrorTime != ''">
|
|
|
+ #{medicationErrorTime},
|
|
|
</if>
|
|
|
<!-- 请描述用药错误 -->
|
|
|
- <if test="medicationErrorDescription != null">
|
|
|
- medication_error_description = #{medicationErrorDescription},
|
|
|
+ <if test="medicationErrorDescription != null and medicationErrorDescription != ''">
|
|
|
+ #{medicationErrorDescription},
|
|
|
</if>
|
|
|
<!-- 用药记录 -->
|
|
|
- <if test="medicationRecord != null">
|
|
|
- medication_record = #{medicationRecord},
|
|
|
+ <if test="medicationRecord != null and medicationRecord != ''">
|
|
|
+ #{medicationRecord},
|
|
|
</if>
|
|
|
<!-- 合并用药记录 -->
|
|
|
- <if test="combinedMedicationRecord != null">
|
|
|
- combined_medication_record = #{combinedMedicationRecord},
|
|
|
+ <if test="combinedMedicationRecord != null and combinedMedicationRecord != ''">
|
|
|
+ #{combinedMedicationRecord},
|
|
|
</if>
|
|
|
<!-- 疼痛标准评分NRS -->
|
|
|
- <if test="painNrsScore != null">
|
|
|
- pain_nrs_score = #{painNrsScore},
|
|
|
+ <if test="painNrsScore != null and painNrsScore != ''">
|
|
|
+ #{painNrsScore},
|
|
|
</if>
|
|
|
<!-- 体力状况评分 -->
|
|
|
- <if test="physicalConditionScore != null">
|
|
|
- physical_condition_score = #{physicalConditionScore},
|
|
|
+ <if test="physicalConditionScore != null and physicalConditionScore != ''">
|
|
|
+ #{physicalConditionScore},
|
|
|
</if>
|
|
|
<!-- 本次回访是否咨询 -->
|
|
|
- <if test="isConsultation != null">
|
|
|
- is_consultation = #{isConsultation},
|
|
|
+ <if test="isConsultation != null and isConsultation != ''">
|
|
|
+ #{isConsultation},
|
|
|
</if>
|
|
|
<!-- 咨询问题类型 -->
|
|
|
<if test="consultationType != null and consultationType != ''">
|
|
|
- consultation_type = #{consultationType},
|
|
|
+ #{consultationType},
|
|
|
</if>
|
|
|
<!-- 具体问题 -->
|
|
|
<if test="specificQuestion != null and specificQuestion != ''">
|
|
|
- specific_question = #{specificQuestion},
|
|
|
+ #{specificQuestion},
|
|
|
</if>
|
|
|
<!-- 药师解答 -->
|
|
|
- <if test="pharmacistResponse != null">
|
|
|
- pharmacist_response = #{pharmacistResponse},
|
|
|
+ <if test="pharmacistResponse != null and pharmacistResponse != ''">
|
|
|
+ #{pharmacistResponse},
|
|
|
</if>
|
|
|
<!-- 患者病情评估 -->
|
|
|
- <if test="patientConditionAssessment != null">
|
|
|
- patient_condition_assessment = #{patientConditionAssessment},
|
|
|
+ <if test="patientConditionAssessment != null and patientConditionAssessment != ''">
|
|
|
+ #{patientConditionAssessment},
|
|
|
</if>
|
|
|
<!-- 共建项目描述 -->
|
|
|
- <if test="projectDescription != null">
|
|
|
- project_description = #{projectDescription},
|
|
|
+ <if test="projectDescription != null and projectDescription != ''">
|
|
|
+ #{projectDescription},
|
|
|
</if>
|
|
|
<!-- 任务id -->
|
|
|
- <if test="taskId != null and taskId != ''">
|
|
|
- taskId = #{taskId},
|
|
|
+ <if test="id != null and id != ''">
|
|
|
+ #{id},
|
|
|
</if>
|
|
|
<!-- 计划ID -->
|
|
|
<if test="planId != null and planId != ''">
|
|
|
- planId = #{planId},
|
|
|
+ #{planId},
|
|
|
</if>
|
|
|
<!-- 患者id -->
|
|
|
<if test="patientId != null and patientId != ''">
|
|
|
- patientId = #{patientId},
|
|
|
+ #{patientId},
|
|
|
</if>
|
|
|
<!-- 门店id -->
|
|
|
- <if test="storeId != null and storeId != ''">
|
|
|
- storeId = #{storeId},
|
|
|
+ <if test="storeId != null">
|
|
|
+ #{storeId},
|
|
|
</if>
|
|
|
<!-- 创建时间 -->
|
|
|
- <if test="createdTime != null">
|
|
|
- createdTime = #{createdTime},
|
|
|
+ <if test="createdTime != null and createdTime != ''">
|
|
|
+ #{createdTime},
|
|
|
</if>
|
|
|
- <!-- 更新时间 -->
|
|
|
- updatedTime = CURRENT_TIMESTAMP,
|
|
|
<!-- 操作人 -->
|
|
|
<if test="operator != null and operator != ''">
|
|
|
- operator = #{operator},
|
|
|
+ #{operator},
|
|
|
</if>
|
|
|
- </trim>)
|
|
|
+ </trim>
|
|
|
</insert>
|
|
|
-
|
|
|
+ <select id="selectFollowUpRecordsByTaskId" parameterType="pd" resultType="pd">
|
|
|
+ select * from s_gxhpz_follow_up_records where 1=1
|
|
|
+ <if test="taskId !=null and taskId !='' ">
|
|
|
+ and taskId = #{taskId}
|
|
|
+ </if>
|
|
|
+ <if test="patientId !=null and patientId !='' ">
|
|
|
+ and patientId = #{patientId}
|
|
|
+ </if>
|
|
|
+ <if test="storeId !=null and storeId !='' ">
|
|
|
+ and storeId = #{storeId}
|
|
|
+ </if>
|
|
|
+ <if test="patientId !=null and patientId !='' ">
|
|
|
+ and patientId = #{patientId}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
</mapper>
|