@@ -46,4 +46,6 @@ public class MineOrderPageListParam {
*/
private String cgCompany;
+ private Integer status;
+
}
@@ -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>