*/
private static final long serialVersionUID = 1L;
public void processRequest(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
String method = request.getParameter("method")==null?"":request.getParameter("method");
request.getSession(true).setAttribute("tbCompanyTypeList", new TbCompanyTypeDAO().getTbCompanyTypeAll());
request.getSession(true).setAttribute("tbCreditRatingList", new TbCreditRatingDAO().getTbCreditRatingAll());
if("add".equals(method)){
String companyCode=request.getParameter("companyCode");
String companyTypeIdAll [] = request.getParameterValues("companyTypeId");
String companyTypeId="";