📄 department_add_process.jsp
字号:
<%@ page errorPage="/vnex/ErrorPage.jsp" %>
<%@ page import="com.vnex.intranet.organization.value.*"%>
<%@ page import="com.vnex.intranet.organization.proxy.*"%>
<jsp:useBean id="organizationProxy" scope="Application" class="com.vnex.intranet.organization.proxy.OrganizationProxyBean" />
<jsp:useBean id="dvalue" scope="request" class="com.vnex.intranet.organization.value.DivisionValueBean" />
<jsp:setProperty name="dvalue" property="divisionName" />
<jsp:setProperty name="dvalue" property="parentDivisionId" />
<jsp:setProperty name="dvalue" property="managerId" />
<jsp:setProperty name="dvalue" property="divisionDuty" />
<jsp:setProperty name="dvalue" property="telephone" />
<jsp:setProperty name="dvalue" property="fax" />
<jsp:setProperty name="dvalue" property="location" />
<jsp:setProperty name="dvalue" property="zipCode" />
<jsp:setProperty name="dvalue" property="email" />
<%
System.out.println(dvalue.getDivisionName());
organizationProxy.createDivision(dvalue);
%>
<jsp:forward page="/mainctrl/organization/getAllDivision" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -