@@ -7,6 +7,8 @@ public class QueryCompareFileDTO {
private Integer projectId;
+ private String patentNo;
+
private Long current;
private Long size;
@@ -33,6 +33,9 @@
<if test="vo.projectId != null">
cl.project_id = #{vo.projectId}
</if>
+ <if test="vo.patentNo != null and vo.patentNo != ''">
+ cl.literature_no = #{vo.patentNo}
+ </if>
</where>
</select>
</mapper>