Commit 66e628cb592a86bf6c25788ff571dc91f5433519

Authored by 房远帅
1 parent a8443564

统计报表-品质科订单明细报表-查询条件

... ... @@ -86,4 +86,13 @@ public class QueryOrderDetailReportVo extends PageVo implements BaseVo, Serializ
86 86 @ApiModelProperty("操作时间")
87 87 private String createTimeEnd;
88 88
  89 + @ApiModelProperty("厚度")
  90 + private String thickness;
  91 +
  92 + @ApiModelProperty("宽度")
  93 + private String width;
  94 +
  95 + @ApiModelProperty("状态")
  96 + private String status;
  97 +
89 98 }
... ...
... ... @@ -247,6 +247,15 @@
247 247 AND tb.create_time <= #{vo.createTimeEnd}
248 248 ]]>
249 249 </if>
  250 + <if test="vo.thickness != null and vo.thickness != ''">
  251 + AND tb.thickness = #{vo.thickness}
  252 + </if>
  253 + <if test="vo.width != null and vo.width != ''">
  254 + AND tb.width = #{vo.width}
  255 + </if>
  256 + <if test="vo.status != null and vo.status != ''">
  257 + AND tb.status = #{vo.status}
  258 + </if>
250 259 </where>
251 260 ) t
252 261 ORDER BY
... ...