fix: 修改获取任务包主图

pull/100/head
sunchenliang 1 year ago
parent 3a81017d9e
commit 0cf94d5c4c

@ -196,8 +196,8 @@ public class OcrTaskchildPicture implements BaseDto, java.io.Serializable {
private String taskname;
@Schema(description = "当前节点名称")
@TableField(value = "TASKINDEX")
private String taskindex;
@TableField(value = "TASKNODE")
private String taskNode;
@Schema(description = "当前节点id")
@TableField(value = "TASKID")

@ -252,7 +252,7 @@ public class TaskchildPictureServiceImpl extends BaseServiceImpl<OcrTaskchildPic
//iFlowFormMessageService.sendMsg(user.getLoginname(),model.getUsername() + SystemMessage.SYS_OA_TYPE_LEAVE + SystemMessage.SYS_OA_TO_DO,taskId,processInstanceId,fromid, CacheQyweixinConstants.OA_DISTIONARY_TYPE_MSG_SHENPI,model.getCategoryid().toString());
}
model.setAssigneename(stringBuffer.toString());
model.setTaskindex(task.getDescription());
model.setTaskNode(task.getDescription());
return this.ocrTaskchildPictureService.updateById(model);
}
return false;

@ -946,7 +946,7 @@
<select id="listFinalTask" resultType="cn.jyjz.xiaoyao.ocr.dataobject.OcrTaskchildPicture"
parameterType="java.util.Map">
select tcp.*, pic.field11 reporttime, pic.similarity_score similarityscore
select tcp.*, pic.field11 reporttime, pic.similarity_score similarityscore,pic.server_thumbnail_url serverThumbnailUrl
from ocr_taskchild_picture tcp
left join ocr_picture pic
on tcp.PICTUREID = pic.ID
@ -963,10 +963,10 @@
</if>
<if test="fromuptimeStart != null">
and tcp.fromuptime &gt;= ${fromuptimeStart}
and tcp.fromuptime &gt;= ${fromuptimeStart.value}
</if>
<if test="fromuptimeEnd != null">
and tcp.fromuptime &lt;= ${fromuptimeEnd}
and tcp.fromuptime &lt;= ${fromuptimeEnd.value}
</if>
<if test="page != null">
<if test="page.sortname != null">

Loading…
Cancel
Save