@@ -9,4 +9,5 @@ public class LaserSceneParam extends RequestBase {
private String title;
private Integer sceneSource;
private Integer location;
+ private String num;
}
@@ -136,5 +136,8 @@
<if test="param.title !=null and param.title !=''">
and s.title like CONCAT('%',#{param.title},'%')
</if>
+ <if test="param.num !=null and param.num != ''">
+ and s.num = #{param.num}
+ </if>
</select>
</mapper>