laozt 11 months ago
commit cf4cbc545c

@ -44,5 +44,12 @@ public class checkResultRequest {
@ApiModelProperty(value = "0未检查 1已检查")
private Integer checkStatus;
/**
* 0稿 1
*/
@ApiModelProperty(value = "0草稿 1正式")
private Integer status ;
}

@ -150,6 +150,9 @@
<if test="req.plannedYear !=null and req.plannedYear !=''">
and a.planned_year =#{req.plannedYear}
</if>
<if test="req.status !=null and req.status !=''">
and a.status =#{req.status}
</if>
<if test="req.enterpriseName !=null and req.enterpriseName !=''">
and a.enterprise_name like concat('%', #{req.enterpriseName}, '%')
</if>

Loading…
Cancel
Save