lyhzzz 6 ngày trước cách đây
mục cha
commit
b7124dc4aa

+ 1 - 0
src/main/java/com/fdkankan/ucenter/vo/request/LaserSceneParam.java

@@ -9,4 +9,5 @@ public class LaserSceneParam extends RequestBase {
     private String title;
     private Integer sceneSource;
     private Integer location;
+    private String num;
 }

+ 3 - 0
src/main/resources/mapper/ucenter/ScenePlusMapper.xml

@@ -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>