修改了外链证书的问题

This commit is contained in:
wucongxing8150 2025-08-29 13:12:06 +08:00
parent d8e89ca0d7
commit 6a2742d539
8 changed files with 56 additions and 37 deletions

View File

@ -106,6 +106,7 @@ public class ClinicalController extends BaseController {
request.getHospitalId(),
request.getDoctorId(),
request.getLabelIden(),
request.getIsNeedLink(),
request.handleOrder()
);
@ -195,6 +196,7 @@ public class ClinicalController extends BaseController {
request.getHospitalId(),
request.getDoctorId(),
request.getLabelIden(),
request.getIsNeedLink(),
request.handleOrder()
);

View File

@ -27,6 +27,7 @@ public interface CaseClinicalArticleDao extends BaseMapper<CaseClinicalArticleMo
@Param("hospitalId") String hospitalId,
@Param("doctorId") String doctorId,
@Param("labelIden") String labelIden,
@Param("isNeedLink") Integer isNeedLink,
@Param("order") Map<String, String> order
);

View File

@ -29,6 +29,7 @@ public interface CaseClinicalVideoDao extends BaseMapper<CaseClinicalVideoModel>
@Param("hospitalId") String hospitalId,
@Param("doctorId") String doctorId,
@Param("labelIden") String labelIden,
@Param("isNeedLink") Integer isNeedLink,
@Param("order") Map<String, String> order
);

View File

@ -41,6 +41,9 @@ public class getClinicalArticleSearchPage {
@JsonProperty("is_need_num")
private Integer isNeedNum = 0;
// 是否需要外部链接0: 1:
@JsonProperty("is_need_link")
private Integer isNeedLink = 1;
// 排序字段
private OrderRequest order;

View File

@ -41,6 +41,10 @@ public class getClinicalVideoSearchPage {
@JsonProperty("is_need_num")
private Integer isNeedNum = 0;
// 是否需要外部链接0: 1:
@JsonProperty("is_need_link")
private Integer isNeedLink = 1;
// 排序字段
private OrderRequest order;

View File

@ -919,6 +919,7 @@ public class CaseClinicalVideoService {
// 增加需要增加的医院数据
addHospitalSet.add(String.valueOf(caseClinicalDoctor.getHospitalId()));
if (caseClinicalVideo.getIsLink() != 1){
// 生成用户证书-文章/视频
if (qrCodeByte == null || qrCodeByte.length == 0) {
// 生成二维码图片
@ -965,6 +966,7 @@ public class CaseClinicalVideoService {
avatarByte
);
}
}
if (!addHospitalSet.isEmpty()){
// 增加医院统计

View File

@ -77,6 +77,9 @@
<if test="labelIden != null and labelIden != ''">
AND l.app_iden = #{labelIden}
</if>
<if test="isNeedLink == 0">
AND l.is_link = 0
</if>
) AS result
JOIN case_clinical_article a ON a.article_id = result.article_id
<if test="order != null and !order.isEmpty()">

View File

@ -45,6 +45,9 @@
<if test="labelIden != null and labelIden != ''">
AND l.app_iden = #{labelIden}
</if>
<if test="isNeedLink == 0">
AND l.is_link = 0
</if>
<if test="order != null and !order.isEmpty()">
ORDER BY
<foreach item="entry" index="key" collection="order" separator=",">