Explorar el Código

矿山域-流程管理

ltt hace 1 año
padre
commit
1e66a1ebd9

+ 2 - 0
business-modules/business-mine/src/main/java/com/sckw/mine/entity/req/MineOrderPageListParam.java

@@ -46,4 +46,6 @@ public class MineOrderPageListParam {
      */
     private String cgCompany;
 
+    private Integer status;
+
 }

+ 3 - 0
business-modules/business-mine/src/main/resources/mapper/MineOrderMapper.xml

@@ -62,6 +62,9 @@
             <if test="param.cgCompany != '' and param.cgCompany != null">
                 and o.cg_company like concat('%',#{param.cgCompany},'%')
             </if>
+            <if test="param.status != null">
+                and o.status = #{param.status}
+            </if>
         </where>
         order by o.create_time desc
      </select>