检验任务待办事项按检验结果检索

master
yinq 3 years ago
parent c29df47153
commit 07d422a1c9

@ -22,6 +22,15 @@ public class InspectionTaskManageRequest implements Serializable {
private String dateToStr;
private Date dateFrom;
private Date dateTo;
private String result;
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public String getHandle() {
return handle;

@ -98,6 +98,9 @@
<if test="dateTo != null">
AND B.CREATED_DATE_TIME &lt;= #{dateTo}
</if>
<if test="result != null and result != ''">
AND B.RESULT = #{result}
</if>
</select>
<select id="selectInspectionTaskDetail" resultType="com.foreverwin.mesnac.quality.model.InspectionTaskManageDetail" flushCache="true">

Loading…
Cancel
Save