Compare commits

...

3 Commits

Author SHA1 Message Date
5ac098dbbf 66666 2025-08-18 14:58:29 +08:00
759f1f5dd9 4444443455 2025-08-18 14:20:30 +08:00
c43f7ef739 44444 2025-08-18 13:32:59 +08:00
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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