diff --git a/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/param/CsDevModelQueryListParm.java b/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/param/CsDevModelQueryListParm.java
index c99e33785..a049e5724 100644
--- a/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/param/CsDevModelQueryListParm.java
+++ b/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/param/CsDevModelQueryListParm.java
@@ -25,6 +25,10 @@ public class CsDevModelQueryListParm {
*/
@ApiModelProperty(value = "装置型号")
private String devType;
+
+ @ApiModelProperty(value = "装置型号名称")
+ private String devName;
+
@ApiModelProperty(value = "版本号")
private String versionNo;
/**
diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/mapping/CsDevModelMapper.xml b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/mapping/CsDevModelMapper.xml
index f0455fb44..e9331ff45 100644
--- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/mapping/CsDevModelMapper.xml
+++ b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/mapping/CsDevModelMapper.xml
@@ -62,6 +62,9 @@
AND a.dev_type = #{csDevModelQueryListParm.devType}
+
+
+ AND b.code = #{csDevModelQueryListParm.devName}
\ No newline at end of file