报修查询接口优化

dev
wangwei 2 years ago
parent b27758f8db
commit 76e3df3611

@ -45,4 +45,13 @@ public class FilterDeviceRepairOrderRequest extends ListPageRequest {
*/
private String repariName;
/**
* 1:2
*/
private Integer repairType;
/**
* 1,2,3,
*/
private Integer urgencyType;
}

@ -64,6 +64,12 @@
#{item}
</foreach>
</if>
<if test="repairType !=null">
and t.repairType = #{repairType}
</if>
<if test="urgencyType !=null">
and t.urgencyType = #{urgencyType}
</if>
</where>
</select>
</mapper>

Loading…
Cancel
Save