📄 multi_work_record_deleted.jsp
字号:
<%@ page errorPage="/vnex/ErrorPage.jsp" %>
<jsp:useBean id="driverProxy" scope="application" class="com.vnex.intranet.vehicle.driver.proxy.DriverProxyBean" />
<%
String[] ids = request.getParameterValues("wrId");
int[] wrIds = new int[0];
if(ids != null)
{
wrIds = new int[ids.length];
for(int i=0;i<ids.length;i++)
{
wrIds[i] = Integer.parseInt(ids[i]);
}
driverProxy.deleteWorkRecords(wrIds);
}
String link = "/mainctrl/driver/listWorkRecord";
%>
<jsp:forward page="<%= link %>" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -