Compare commits

..

No commits in common. "5ac098dbbf38f4c0b240eeeadd9497cd197e6c7f" and "f28e8b25b824ac6df300ef930a8bca1c966b9dac" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -114,8 +114,8 @@ public class CaseExchangeDraftDto {
/** /**
* 选项 * 选项
*/ */
@JsonProperty("case_exchange_vote_option") @JsonProperty("option")
private List<OptionDto> caseExchangeVoteOption; private List<OptionDto> option;
} }
/** /**

View File

@ -30,7 +30,7 @@
FROM stats_case_clinical_doctor a FROM stats_case_clinical_doctor a
LEFT JOIN case_clinical_doctor b ON a.doctor_id = b.doctor_id LEFT JOIN case_clinical_doctor b ON a.doctor_id = b.doctor_id
WHERE b.status = 1 WHERE b.status = 1
AND (a.article_num + a.video_num) >= 5 AND (a.article_num + a.video_num) >= 2
<if test="doctorName != null and doctorName != ''"> <if test="doctorName != null and doctorName != ''">
AND b.doctor_name LIKE CONCAT('%', #{doctorName}, '%') AND b.doctor_name LIKE CONCAT('%', #{doctorName}, '%')
</if> </if>

View File

@ -30,7 +30,7 @@
FROM stats_case_clinical_hospital a FROM stats_case_clinical_hospital a
LEFT JOIN basic_hospital b ON a.hospital_id = b.hospital_id LEFT JOIN basic_hospital b ON a.hospital_id = b.hospital_id
WHERE b.source = 2 WHERE b.source = 2
AND (a.article_num + a.video_num) >= 10 AND (a.article_num + a.video_num) >= 2
<if test="hospital_name != null and hospital_name != ''"> <if test="hospital_name != null and hospital_name != ''">
AND b.hospital_name LIKE CONCAT('%', #{hospital_name}, '%') AND b.hospital_name LIKE CONCAT('%', #{hospital_name}, '%')
</if> </if>