|
|
@@ -1,698 +1,715 @@
|
|
|
-<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
-<!DOCTYPE struts PUBLIC
|
|
|
- "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
|
|
|
- "http://struts.apache.org/dtds/struts-2.5.dtd">
|
|
|
-
|
|
|
-<struts>
|
|
|
-
|
|
|
- <!--<constant name="struts.enable.DynamicMethodInvocation" value="false"
|
|
|
- /> <constant name="struts.devMode" value="false" /> <include file="example.xml"/> -->
|
|
|
- <constant name="struts.enable.DynamicMethodInvocation" value="true" />
|
|
|
- <!-- 为修复struts2 s2-016、s2-017漏洞,重写DefaultActionMapper -->
|
|
|
- <bean type="org.apache.struts2.dispatcher.mapper.ActionMapper"
|
|
|
- name="myDefaultActionMapper" class="com.runzhixing.tool.MyDefaultActionMapper" />
|
|
|
- <constant name="struts.mapper.class" value="myDefaultActionMapper" />
|
|
|
- <constant name="struts.custom.i18n.resources" value="global" />
|
|
|
- <constant name="struts.multipart.maxSize" value="100000000" />
|
|
|
-
|
|
|
-
|
|
|
- <package name="login" namespace="/" extends="struts-default"
|
|
|
- strict-method-invocation="false">
|
|
|
- <action name="validateLogin" class="com.runzhixing.action.LoginAction"
|
|
|
- method="validateLogin">
|
|
|
- <result name="success">/jsp/rzx/bgman.jsp</result>
|
|
|
- <result name="fail">/jsp/fail/loginfail.jsp</result>
|
|
|
- </action>
|
|
|
- </package>
|
|
|
- <package name="wxCert" namespace="/" extends="struts-default"
|
|
|
- strict-method-invocation="false">
|
|
|
- <action name="useCert" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="useCert">
|
|
|
- <result name="success">
|
|
|
- /wxUseCert.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/500.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="electronicsCert" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="electronicsCert">
|
|
|
- <result name="success">
|
|
|
- /wxElectronicsCert.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/500.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- </package>
|
|
|
- <package name="/" namespace="/" extends="json-default"
|
|
|
- strict-method-invocation="false">
|
|
|
- <action name="nxlogin" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="nxlogin"></action>
|
|
|
- </package>
|
|
|
- <package name="wx" namespace="/" extends="json-default"
|
|
|
- strict-method-invocation="false">
|
|
|
- <action name="checkSignature" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="checkSignature"></action>
|
|
|
- <action name="crud_single_cylinder_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="crud_single_cylinder_info"></action>
|
|
|
- <action name="query_car_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="query_car_info"></action>
|
|
|
- <action name="use_Cert" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="use_Cert"></action>
|
|
|
- <action name="wx_Login" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="wx_Login"></action>
|
|
|
- <action name="wx_register" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="wx_register"></action>
|
|
|
- <action name="city_country_inifo" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="city_country_inifo"></action>
|
|
|
- <action name="cert_install_Info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="cert_install_Info"></action>
|
|
|
- <action name="base_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="base_info"></action>
|
|
|
- <action name="crud_car_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="crud_car_info"></action>
|
|
|
- <action name="car_info_by_user" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="car_info_by_user"></action>
|
|
|
- <action name="crud_cylinder_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="crud_cylinder_info">
|
|
|
- </action>
|
|
|
- <action name="cylinder_info_by_car" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="cylinder_info_by_car"></action>
|
|
|
- <action name="upload_img" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="upload_img">
|
|
|
- <interceptor-ref name="fileUpload">
|
|
|
- <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
- <param name="maximumSize">10485760</param>
|
|
|
- </interceptor-ref>
|
|
|
- <interceptor-ref name="defaultStack" />
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="upload_more_img" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="upload_more_img">
|
|
|
- <interceptor-ref name="fileUpload">
|
|
|
- <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
- <param name="maximumSize">10485760</param>
|
|
|
- </interceptor-ref>
|
|
|
- <interceptor-ref name="defaultStack" />
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="get_car_cylinder_cert_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="get_car_cylinder_cert_info"></action>
|
|
|
- <action name="city_Info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="city_Info"></action>
|
|
|
- <action name="clear_Cookie" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="clear_Cookie"></action>
|
|
|
- <action name="getSwiperList" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="getSwiperList"></action>
|
|
|
- <action name="getFunctionList" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="getFunctionList"></action>
|
|
|
- <action name="lately_fill_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="lately_fill_info"></action>
|
|
|
- <action name="getReportFormData" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="getReportFormData"></action>
|
|
|
- <action name="chart1SaveAsImage" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="chart1SaveAsImage"></action>
|
|
|
- <action name="generatetPDF" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="generatetPDF"></action>
|
|
|
- <action name="get_cert_by_carguid" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="get_cert_by_carguid"></action>
|
|
|
- <action name="remove_img" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="remove_img"></action>
|
|
|
- <action name="bind_existed_car_cylinder" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="bind_existed_car_cylinder"></action>
|
|
|
- <action name="unbind_car" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
- method="unbind_car"></action>
|
|
|
-
|
|
|
- </package>
|
|
|
-
|
|
|
-
|
|
|
- <!-- <include file="struts-login.xml"/> -->
|
|
|
- <package name="ajax" namespace="/" extends="json-default"
|
|
|
- strict-method-invocation="false">
|
|
|
-
|
|
|
-
|
|
|
- <action name="getStation2" class="com.runzhixing.action.TodayModifyAction"
|
|
|
- method="getStation2"></action>
|
|
|
- <action name="updateMachine" class="com.runzhixing.action.TodayModifyAction"
|
|
|
- method="updateMachine"></action>
|
|
|
- <action name="updateFillCheckOper" class="com.runzhixing.action.TodayModifyAction"
|
|
|
- method="updateFillCheckOper"></action>
|
|
|
- <action name="updateFillCheck2" class="com.runzhixing.action.TodayModifyAction"
|
|
|
- method="updateFillCheck2"></action>
|
|
|
- <action name="getRegister" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getRegister"></action>
|
|
|
- <action name="examineAll" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="examineAll"></action>
|
|
|
- <action name="getInstallLocInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getInstallLocInfo"></action>
|
|
|
- <action name="getInstallTypeInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getInstallTypeInfo"></action>
|
|
|
- <action name="getProductInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getProductInfo"></action>
|
|
|
- <action name="CRUDCarInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="CRUDCarInfo"></action>
|
|
|
- <action name="getCarInfo_1" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCarInfo_1"></action>
|
|
|
- <action name="getCarTypeInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCarTypeInfo"></action>
|
|
|
- <action name="getCarPlateColorInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCarPlateColorInfo"></action>
|
|
|
- <action name="getUnitInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getUnitInfo"></action>
|
|
|
- <action name="getCountryInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCountryInfo"></action>
|
|
|
- <action name="getCityInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCityInfo"></action>
|
|
|
- <action name="getAppTypeInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getAppTypeInfo"></action>
|
|
|
- <action name="insertWXID" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="insertWXID"></action>
|
|
|
- <action name="updateNickName" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="updateNickName"></action>
|
|
|
-
|
|
|
- <action name="latelyFill" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="latelyFill"></action>
|
|
|
- <action name="getPreCarNo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getPreCarNo"></action>
|
|
|
- <action name="register" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="register"></action>
|
|
|
- <action name="examineCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="examineCylinder"></action>
|
|
|
- <action name="replaceRegNo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="replaceRegNo"></action>
|
|
|
- <action name="examineSingleCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="examineSingleCylinder"></action>
|
|
|
- <action name="examineCar" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="examineCar"></action>
|
|
|
- <action name="uploadCert" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="uploadCert">
|
|
|
- <interceptor-ref name="fileUpload">
|
|
|
- <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
- <!-- <param name="maximumSize">5242880*2</param> -->
|
|
|
- <param name="maximumSize">15242880</param>
|
|
|
- </interceptor-ref>
|
|
|
- <interceptor-ref name="defaultStack" />
|
|
|
- </action>
|
|
|
- <action name="getCylinderProduct" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCylinderProduct"></action>
|
|
|
- <action name="getCylinderInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCylinderInfo"></action>
|
|
|
- <action name="getCarInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCarInfo"></action>
|
|
|
- <action name="deleteCarCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="deleteCarCylinder"></action>
|
|
|
- <action name="getcarcylinderbyuser" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getcarcylinderbyuser"></action>
|
|
|
- <action name="insertCylinderInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="insertCylinderInfo"></action>
|
|
|
- <action name="insertCarInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="insertCarInfo"></action>
|
|
|
- <action name="insertCarCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="insertCarCylinder">
|
|
|
-
|
|
|
-
|
|
|
- </action>
|
|
|
- <action name="getRedirect" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getRedirect"></action>
|
|
|
- <action name="getPhoneCode" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getPhoneCode"></action>
|
|
|
- <action name="getVCode" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getVCode"></action>
|
|
|
- <action name="testVCode" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="testVCode"></action>
|
|
|
- <action name="getCity" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCity"></action>
|
|
|
- <action name="getCity123" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCity123"></action>
|
|
|
- <action name="getCounty123" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCounty123"></action>
|
|
|
- <action name="getUnit123" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getUnit123"></action>
|
|
|
- <action name="getCountry" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCountry"></action>
|
|
|
- <action name="getUnit" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getUnit"></action>
|
|
|
- <action name="getCarCylinderInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="getCarCylinderInfo"></action>
|
|
|
-
|
|
|
- <action name="modifyWorkPersonInfoCheck"
|
|
|
- class="com.runzhixing.action.ModifyWorkPersonInfoCheckAction" method="modifyWorkPersonInfoCheck"></action>
|
|
|
- <action name="modifyStationInfoCheck"
|
|
|
- class="com.runzhixing.action.ModifyStationInfoCheckAction" method="modifyStationInfoCheck"></action>
|
|
|
- <action name="testingStationInfoCheck"
|
|
|
- class="com.runzhixing.action.TestingStationInfoCheckAction" method="testingStationInfoCheck"></action>
|
|
|
- <action name="modifyCompanyform" class="com.runzhixing.action.ModifyCompanyformAction"
|
|
|
- method="modifyCompanyform"></action>
|
|
|
- <action name="todayModify" class="com.runzhixing.action.TodayModifyAction"
|
|
|
- method="todayModify"></action>
|
|
|
- <action name="todayModify123" class="com.runzhixing.action.TodayModifyAction"
|
|
|
- method="todayModify123"></action>
|
|
|
- <action name="testingworkPersonInfo" class="com.runzhixing.action.WorkPersonInfoAction"
|
|
|
- method="testingworkPersonInfo"></action>
|
|
|
- <action name="TagdataStatis" class="com.runzhixing.action.TagdataStatisAction"
|
|
|
- method="TagdataStatis"></action>
|
|
|
- <action name="tagIssuingfrom" class="com.runzhixing.action.TagIssuingfromAction"
|
|
|
- method="tagIssuingfrom"></action>
|
|
|
- <action name="tagIssuingStatistics" class="com.runzhixing.action.TagIssuingfromAction"
|
|
|
- method="tagIssuingStatistics"></action>
|
|
|
- <action name="checkSeedataform" class="com.runzhixing.action.CheckSeedataQueryAction"
|
|
|
- method="checkSeedataQuery"></action>
|
|
|
- <action name="workPersonInfo" class="com.runzhixing.action.WorkPersonInfoAction"
|
|
|
- method="workPersonInfo"></action>
|
|
|
- <action name="fillingMachineInfo" class="com.runzhixing.action.FillingMachineInfoAction"
|
|
|
- method="fillingMachineInfo"></action>
|
|
|
- <action name="checkStationInfo" class="com.runzhixing.action.CheckStationInfoAction"
|
|
|
- method="checkStationInfo"></action>
|
|
|
- <action name="kaoqinDateStatist" class="com.runzhixing.action.KaoqinDateStatistAction"
|
|
|
- method="kaoqinDateStatist"></action>
|
|
|
-
|
|
|
- <action name="CNGQualityInto" class="com.runzhixing.action.CNGQualityIntoAction"
|
|
|
- method="CNGQualityInto"></action>
|
|
|
- <action name="specialInto" class="com.runzhixing.action.SpecialIntoAction"
|
|
|
- method="specialInto"></action>
|
|
|
- <action name="nonlocalQuery" class="com.runzhixing.action.NonlocalQueryAction"
|
|
|
- method="nonlocalQuery"></action>
|
|
|
- <action name="kaoqingQuery" class="com.runzhixing.action.KaoqingQueryAction"
|
|
|
- method="kaoqingQuery"></action>
|
|
|
- <action name="releaseAnnformform" class="com.runzhixing.action.CheckAnnounformmentAction"
|
|
|
- method="releaseAnn"></action>
|
|
|
- <action name="checkAnnounformment" class="com.runzhixing.action.CheckAnnounformmentAction"
|
|
|
- method="checkAnnoun"></action>
|
|
|
- <!-- 修改密码 -->
|
|
|
- <action name="alterpassword" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="alterpassword"></action>
|
|
|
-
|
|
|
- <action name="infoview" class="com.runzhixing.action.InfoviewAction"
|
|
|
- method="infoview"></action>
|
|
|
- <!-- 查看网络情况 -->
|
|
|
- <action name="getCNGStationTranInfoList" class="com.runzhixing.action.CNGStationTranInfoAction"
|
|
|
- method="getCNGStationTranInfoList"></action>
|
|
|
- <!-- 监察人员管理 -->
|
|
|
- <action name="Supervisormanagement" class="com.runzhixing.action.SupervisormanagementAction"
|
|
|
- method="supervisormanagement"></action>
|
|
|
- <!-- 场所管理 -->
|
|
|
- <action name="Placemanagement" class="com.runzhixing.action.PlacemanagementAction"
|
|
|
- method="placemanagement"></action>
|
|
|
- <!-- 得到原先的告警参数 -->
|
|
|
- <action name="getoldwarningparam" class="com.runzhixing.action.WarningparasetAction"
|
|
|
- method="getoldwarningparam"></action>
|
|
|
- <!-- 设置新的告警参数 -->
|
|
|
- <action name="warningparaset" class="com.runzhixing.action.WarningparasetAction"
|
|
|
- method="warningparaset"></action>
|
|
|
- <!-- 加气机运行状态 -->
|
|
|
- <action name="aeratedmachinerunningstate"
|
|
|
- class="com.runzhixing.action.AeratedmachinerunningstateAction"
|
|
|
- method="aeratedmachinerunningstate"></action>
|
|
|
- <!-- 人员巡查情况查询 -->
|
|
|
- <action name="personnelInspection" class="com.runzhixing.action.PersonnelInspectionAction"
|
|
|
- method="personnelInspection"></action>
|
|
|
- <!-- 人员巡查情况查询 -->
|
|
|
- <action name="personnelInspection1" class="com.runzhixing.action.PersonnelInspectionAction"
|
|
|
- method="personnelInspection1"></action>
|
|
|
- <!-- 巡查数据查询 -->
|
|
|
- <action name="inspectiondataQuery" class="com.runzhixing.action.InspectiondataQueryAction"
|
|
|
- method="inspectiondataQuery"></action>
|
|
|
-
|
|
|
- <!-- 特种设备数据查询 -->
|
|
|
- <action name="specialequipmentdataQuery"
|
|
|
- class="com.runzhixing.action.SpecialequipmentdataQueryAction" method="specialequipmentdataQuery"></action>
|
|
|
- <!-- 气瓶数据查询 -->
|
|
|
- <action name="cylinderDataQuery" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
- method="cylinderDataQuery11"></action>
|
|
|
- <action name="cylinderDataQuery12" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
- method="cylinderDataQuery12"></action>
|
|
|
- <action name="cylinderDataQuery13" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
- method="cylinderDataQuery13"></action>
|
|
|
- <action name="cylinderDataQuery14" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
- method="cylinderDataQuery14"></action>
|
|
|
- <!-- 气瓶数据查询 -->
|
|
|
- <action name="cylinderDataQuery1" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
- method="cylinderDataQuery1"></action>
|
|
|
- <!-- 气瓶将要检测数量查询 -->
|
|
|
- <action name="cylinderDataQueryagain"
|
|
|
- class="com.runzhixing.action.CylinderDataQueryagainAction" method="cylinderDataQueryagain"></action>
|
|
|
- <!-- 当天检验情况 -->
|
|
|
- <action name="todattestingdataQuery" class="com.runzhixing.action.TestingdataQueryAction"
|
|
|
- method="todaytestingdataQuery"></action>
|
|
|
- <!-- 检验数据查询 -->
|
|
|
- <action name="testingdataQuery" class="com.runzhixing.action.TestingdataQueryAction"
|
|
|
- method="testingdataQuery"></action>
|
|
|
- <!-- 车辆数据查询 -->
|
|
|
- <action name="carsDataQuery" class="com.runzhixing.action.CarsDataQueryAction"
|
|
|
- method="carsDataQuery"></action>
|
|
|
- <!-- 车辆数据查询 -->
|
|
|
- <action name="getCarsDataQuery" class="com.runzhixing.action.CarsDataQueryAction"
|
|
|
- method="getCarsDataQuery"></action>
|
|
|
- <!-- 车辆数据查询 -->
|
|
|
- <action name="carsDataQueryagain" class="com.runzhixing.action.CarsDataQueryAction"
|
|
|
- method="carsDataQueryagain"></action>
|
|
|
- <!-- 黑名单查询 -->
|
|
|
- <action name="blackListQuery" class="com.runzhixing.action.BlackListQueryAction"
|
|
|
- method="blackListQuery"></action>
|
|
|
- <!-- CNG质量查询 -->
|
|
|
- <action name="CNGQualityQuery" class="com.runzhixing.action.CNGQualityQueryAction"
|
|
|
- method="CNGQualityQuery"></action>
|
|
|
- <!-- 充装数据查询 -->
|
|
|
- <action name="fillingDataQuery" class="com.runzhixing.action.FillingDataQueryAction"
|
|
|
- method="fillingDataQuery"></action>
|
|
|
- <!-- 改装数据查询 -->
|
|
|
- <action name="modifiedDataQuery" class="com.runzhixing.action.ModifiedDataQueryAction"
|
|
|
- method="modifiedDataQuery"></action>
|
|
|
-
|
|
|
-
|
|
|
- <!-- 系统告警日志 -->
|
|
|
- <action name="systemWarninglog" class="com.runzhixing.action.SystemWarninglogAction"
|
|
|
- method="systemWarninglog"></action>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- <!-- 改装数据查询 -->
|
|
|
- <action name="province" class="com.runzhixing.action.ProvinceAction"
|
|
|
- method="province"></action>
|
|
|
-
|
|
|
-
|
|
|
- <!-- 改装数据查询 -->
|
|
|
- <action name="AdvanceSystemwarninglog" class="com.runzhixing.action.SystemWarninglogAction"
|
|
|
- method="AdvanceSystemwarninglog">
|
|
|
- <result name="success">/jsp/rzx/log/Systemwarninglog.jsp</result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="makeChart" class="com.runzhixing.action.Test"
|
|
|
- method="makeChart">
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="hiddenspeStation" class="com.runzhixing.action.SpeStationAction"
|
|
|
- method="speStationQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenspeStation1" class="com.runzhixing.action.SpeStationAction"
|
|
|
- method="speStationQuery1">
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="hiddencheckStation" class="com.runzhixing.action.CheckStationAction"
|
|
|
- method="checkStationQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenoperatorNo" class="com.runzhixing.action.JQJStationAction"
|
|
|
- method="operatorNoQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenjqj" class="com.runzhixing.action.JQJStationAction"
|
|
|
- method="jqjQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenCNGStation" class="com.runzhixing.action.CNGStationAction"
|
|
|
- method="cngstationQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenStation" class="com.runzhixing.action.StationAction"
|
|
|
- method="stationQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenUnit" class="com.runzhixing.action.UnitAction"
|
|
|
- method="unitQuery">
|
|
|
- </action>
|
|
|
- <action name="hiddenCity" class="com.runzhixing.action.HiddenCityAction"
|
|
|
- method="hiddenCity">
|
|
|
- </action>
|
|
|
- <action name="hiddenjiangaun" class="com.runzhixing.action.HiddenCityAction"
|
|
|
- method="hiddenjiangaun">
|
|
|
- </action>
|
|
|
- <action name="hiddenxuncha" class="com.runzhixing.action.HiddenCityAction"
|
|
|
- method="hiddenxuncha">
|
|
|
- </action>
|
|
|
- <action name="hiddenCountry" class="com.runzhixing.action.HiddenCityAction"
|
|
|
- method="hiddenCountry">
|
|
|
- </action>
|
|
|
- <action name="getstationdetail" class="com.runzhixing.action.HiddenCityAction"
|
|
|
- method="getstationdetail">
|
|
|
- </action>
|
|
|
- <action name="getstationdetailreset" class="com.runzhixing.action.HiddenCityAction"
|
|
|
- method="getstationdetailreset">
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="operatorDetail" class="com.runzhixing.action.OperatorDetailAction"
|
|
|
- method="operatorDetail">
|
|
|
- </action>
|
|
|
- <action name="machineDetail" class="com.runzhixing.action.MachineDetailActionagain"
|
|
|
- method="machineDetailAgain">
|
|
|
- </action>
|
|
|
- <!-- 数据统计 -->
|
|
|
- <!-- 充装数据统计 -->
|
|
|
- <action name="FillingDataStatistics" class="com.runzhixing.action.FillingDataStatisticAction"
|
|
|
- method="fillingDataStatistic">
|
|
|
- </action>
|
|
|
-
|
|
|
- <!-- 气瓶数据统计 -->
|
|
|
- <action name="CylinderDataStatistics"
|
|
|
- class="com.runzhixing.action.CylinderDataStatisticsAction" method="cylinderDataStatistics">
|
|
|
- </action>
|
|
|
- <!-- 车辆数据统计 -->
|
|
|
- <action name="CarDataStatistics" class="com.runzhixing.action.CarDataStatisticsAction"
|
|
|
- method="CarDataStatistics">
|
|
|
- </action>
|
|
|
- <!-- 车辆气瓶数量统计 -->
|
|
|
- <action name="CarCyNumStatistics" class="com.runzhixing.action.CarDataStatisticsAction"
|
|
|
- method="CarCyNumStatistics">
|
|
|
- </action>
|
|
|
- <action name="relogin" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="relogin">
|
|
|
- <result name="success">
|
|
|
- /jsp/login/loginType.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/500.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <!-- 气瓶追踪 -->
|
|
|
- <action name="cylinderFollow" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
- method="ajaxCylinderFollow">
|
|
|
- </action>
|
|
|
-
|
|
|
-
|
|
|
- <action name="downloadExcel" class="com.runzhixing.action.DownloadExcelAction"
|
|
|
- method="downloadExcel">
|
|
|
- </action>
|
|
|
- <action name="checkValidity" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
- method="CheckValidity1">
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="exportTestingData" class="com.runzhixing.action.ExportData"
|
|
|
- method="exportTestingData">
|
|
|
- </action>
|
|
|
- <action name="spdataList" class="com.runzhixing.action.ExportData"
|
|
|
- method="spdataList">
|
|
|
- </action>
|
|
|
- </package>
|
|
|
-
|
|
|
- <!-- Add packages here -->
|
|
|
- <package name="default" namespace="/" extends="struts-default"
|
|
|
- strict-method-invocation="false">
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- <action name="safeExit" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="safeExit">
|
|
|
- <result name="success">
|
|
|
- /jsp/login/loginre.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/login/loginre.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="wxLogin" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
- method="wxLogin">
|
|
|
- <result name="success">
|
|
|
- /jsp/applyRegister.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/500.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="getValveHistory" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="getValveHistory">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/ValveHistory.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="getLatelyFill" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="getLatelyFill">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/LatelyFill.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="getQualificationPicture" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="getQualificationPicture">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/CylinderImg.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="loginCng" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
- method="loginCng">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/CylinderFollow.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="downloadExcel" class="com.runzhixing.action.DownloadExcelAction"
|
|
|
- method="downloadExcel">
|
|
|
- </action>
|
|
|
- <action name="CylinderFollow" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
- method="cylinderFollow">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/CylinderFollow.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
-
|
|
|
- <action name="machineDetail" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="machineDetail">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/filling/CylinderdataQuery.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- <action name="CheckValidity" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
- method="CheckValidity">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/CheckValidity.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
-
|
|
|
- <action name="machineDetailfill" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="machineDetail1">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/filling/CylinderdataQuery.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="carpublic" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="carpublic">
|
|
|
- <result name="success">
|
|
|
- /jsp/carpublic.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="carAudit" class="com.runzhixing.action.CarAuditAction"
|
|
|
- method="carAudit">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/carDuit.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="getCarChange" class="com.runzhixing.action.CarAuditAction"
|
|
|
- method="getCarChange">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/CarChange.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="carAuditdo" class="com.runzhixing.action.CarAuditAction"
|
|
|
- method="carAuditdo">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/carDuit.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="CylinderMonitorListdo" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
- method="CylinderMonitorListdo">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/CylinderMonitorListdo.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="tagQuerydo" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
- method="tagQuerydo">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/tagQuerydo.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="cylinderGuiddo" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
- method="cylinderGuiddo">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/carCylinderGuiddo.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="cylinderGuid" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
- method="cylinderGuid">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/dataQuery/carCylinderGuid.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="relogin" class="com.runzhixing.action.MachineDetailAction"
|
|
|
- method="relogin">
|
|
|
- <result name="success">
|
|
|
- /jsp/login/loginType.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/500.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
- <action name="Detailbyid" class="com.runzhixing.action.CheckAnnounformmentAction"
|
|
|
- method="detailbyID">
|
|
|
- <result name="success">
|
|
|
- /jsp/rzx/infoMan/detailbyid.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- <action name="safeexit" class="com.runzhixing.action.SafeexitAction"
|
|
|
- method="safeexit">
|
|
|
- <result name="success">
|
|
|
- /jsp/login/loginType.jsp
|
|
|
- </result>
|
|
|
- <result name="error">
|
|
|
- /jsp/fail/nodata.jsp
|
|
|
- </result>
|
|
|
- </action>
|
|
|
-
|
|
|
- </package>
|
|
|
-
|
|
|
-</struts>
|
|
|
+<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
+<!DOCTYPE struts PUBLIC
|
|
|
+ "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
|
|
|
+ "http://struts.apache.org/dtds/struts-2.5.dtd">
|
|
|
+
|
|
|
+<struts>
|
|
|
+
|
|
|
+ <!--<constant name="struts.enable.DynamicMethodInvocation" value="false"
|
|
|
+ /> <constant name="struts.devMode" value="false" /> <include file="example.xml"/> -->
|
|
|
+ <constant name="struts.enable.DynamicMethodInvocation" value="true" />
|
|
|
+ <!-- 为修复struts2 s2-016、s2-017漏洞,重写DefaultActionMapper -->
|
|
|
+ <bean type="org.apache.struts2.dispatcher.mapper.ActionMapper"
|
|
|
+ name="myDefaultActionMapper" class="com.runzhixing.tool.MyDefaultActionMapper" />
|
|
|
+ <constant name="struts.mapper.class" value="myDefaultActionMapper" />
|
|
|
+ <constant name="struts.custom.i18n.resources" value="global" />
|
|
|
+ <constant name="struts.multipart.maxSize" value="100000000" />
|
|
|
+
|
|
|
+
|
|
|
+ <package name="login" namespace="/" extends="struts-default"
|
|
|
+ strict-method-invocation="false">
|
|
|
+ <action name="validateLogin" class="com.runzhixing.action.LoginAction"
|
|
|
+ method="validateLogin">
|
|
|
+ <result name="success">/jsp/rzx/bgman.jsp</result>
|
|
|
+ <result name="fail">/jsp/fail/loginfail.jsp</result>
|
|
|
+ </action>
|
|
|
+ </package>
|
|
|
+ <package name="wxCert" namespace="/" extends="struts-default"
|
|
|
+ strict-method-invocation="false">
|
|
|
+ <action name="useCert" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="useCert">
|
|
|
+ <result name="success">
|
|
|
+ /wxUseCert.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/500.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="electronicsCert" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="electronicsCert">
|
|
|
+ <result name="success">
|
|
|
+ /wxElectronicsCert.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/500.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ </package>
|
|
|
+ <package name="/" namespace="/" extends="json-default"
|
|
|
+ strict-method-invocation="false">
|
|
|
+ <action name="nxlogin" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="nxlogin"></action>
|
|
|
+ </package>
|
|
|
+ <package name="wx" namespace="/" extends="json-default"
|
|
|
+ strict-method-invocation="false">
|
|
|
+ <action name="checkSignature" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="checkSignature"></action>
|
|
|
+ <action name="crud_single_cylinder_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="crud_single_cylinder_info"></action>
|
|
|
+ <action name="query_car_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="query_car_info"></action>
|
|
|
+ <action name="use_Cert" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="use_Cert"></action>
|
|
|
+ <action name="wx_Login" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="wx_Login"></action>
|
|
|
+ <action name="wx_register" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="wx_register"></action>
|
|
|
+ <action name="city_country_inifo" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="city_country_inifo"></action>
|
|
|
+ <action name="cert_install_Info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="cert_install_Info"></action>
|
|
|
+ <action name="base_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="base_info"></action>
|
|
|
+ <action name="crud_car_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="crud_car_info"></action>
|
|
|
+ <action name="car_info_by_user" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="car_info_by_user"></action>
|
|
|
+ <action name="crud_cylinder_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="crud_cylinder_info">
|
|
|
+ </action>
|
|
|
+ <action name="cylinder_info_by_car" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="cylinder_info_by_car"></action>
|
|
|
+ <action name="upload_img" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="upload_img">
|
|
|
+ <interceptor-ref name="fileUpload">
|
|
|
+ <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
+ <param name="maximumSize">10485760</param>
|
|
|
+ </interceptor-ref>
|
|
|
+ <interceptor-ref name="defaultStack" />
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="upload_more_img" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="upload_more_img">
|
|
|
+ <interceptor-ref name="fileUpload">
|
|
|
+ <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
+ <param name="maximumSize">10485760</param>
|
|
|
+ </interceptor-ref>
|
|
|
+ <interceptor-ref name="defaultStack" />
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="get_car_cylinder_cert_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="get_car_cylinder_cert_info"></action>
|
|
|
+ <action name="city_Info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="city_Info"></action>
|
|
|
+ <action name="clear_Cookie" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="clear_Cookie"></action>
|
|
|
+ <action name="getSwiperList" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="getSwiperList"></action>
|
|
|
+ <action name="getFunctionList" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="getFunctionList"></action>
|
|
|
+ <action name="lately_fill_info" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="lately_fill_info"></action>
|
|
|
+ <action name="getReportFormData" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="getReportFormData"></action>
|
|
|
+ <action name="chart1SaveAsImage" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="chart1SaveAsImage"></action>
|
|
|
+ <action name="generatetPDF" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="generatetPDF"></action>
|
|
|
+ <action name="get_cert_by_carguid" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="get_cert_by_carguid"></action>
|
|
|
+ <action name="remove_img" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="remove_img"></action>
|
|
|
+ <action name="bind_existed_car_cylinder" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="bind_existed_car_cylinder"></action>
|
|
|
+ <action name="unbind_car" class="com.runzhixing.action.ThirdInterfaceAction"
|
|
|
+ method="unbind_car"></action>
|
|
|
+
|
|
|
+ </package>
|
|
|
+
|
|
|
+ <package name="nx" namespace="/" extends="json-default" strict-method-invocation="false">
|
|
|
+ <action name="city_country_inifo" class="com.runzhixing.action.NxAppCarAction" method="city_country_inifo"></action>
|
|
|
+ <action name="cert_install_Info" class="com.runzhixing.action.NxAppCarAction" method="cert_install_Info"></action>
|
|
|
+ <action name="crud_car_info" class="com.runzhixing.action.NxAppCarAction" method="crud_car_info"></action>
|
|
|
+ <action name="upload_img" class="com.runzhixing.action.NxAppCarAction" method="upload_img">
|
|
|
+ <interceptor-ref name="fileUpload">
|
|
|
+ <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
+ <param name="maximumSize">10485760</param>
|
|
|
+ </interceptor-ref>
|
|
|
+ <interceptor-ref name="defaultStack" />
|
|
|
+ </action>
|
|
|
+ <action name="remove_img" class="com.runzhixing.action.NxAppCarAction" method="remove_img"></action>
|
|
|
+ <action name="get_car_cylinder_cert_info" class="com.runzhixing.action.NxAppCarAction" method="get_car_cylinder_cert_info"></action>
|
|
|
+ <action name="crud_single_cylinder_info" class="com.runzhixing.action.NxAppCarAction" method="crud_single_cylinder_info"></action>
|
|
|
+
|
|
|
+ </package>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- <include file="struts-login.xml"/> -->
|
|
|
+ <package name="ajax" namespace="/" extends="json-default"
|
|
|
+ strict-method-invocation="false">
|
|
|
+
|
|
|
+
|
|
|
+ <action name="getStation2" class="com.runzhixing.action.TodayModifyAction"
|
|
|
+ method="getStation2"></action>
|
|
|
+ <action name="updateMachine" class="com.runzhixing.action.TodayModifyAction"
|
|
|
+ method="updateMachine"></action>
|
|
|
+ <action name="updateFillCheckOper" class="com.runzhixing.action.TodayModifyAction"
|
|
|
+ method="updateFillCheckOper"></action>
|
|
|
+ <action name="updateFillCheck2" class="com.runzhixing.action.TodayModifyAction"
|
|
|
+ method="updateFillCheck2"></action>
|
|
|
+ <action name="getRegister" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getRegister"></action>
|
|
|
+ <action name="examineAll" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="examineAll"></action>
|
|
|
+ <action name="getInstallLocInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getInstallLocInfo"></action>
|
|
|
+ <action name="getInstallTypeInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getInstallTypeInfo"></action>
|
|
|
+ <action name="getProductInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getProductInfo"></action>
|
|
|
+ <action name="CRUDCarInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="CRUDCarInfo"></action>
|
|
|
+ <action name="getCarInfo_1" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCarInfo_1"></action>
|
|
|
+ <action name="getCarTypeInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCarTypeInfo"></action>
|
|
|
+ <action name="getCarPlateColorInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCarPlateColorInfo"></action>
|
|
|
+ <action name="getUnitInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getUnitInfo"></action>
|
|
|
+ <action name="getCountryInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCountryInfo"></action>
|
|
|
+ <action name="getCityInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCityInfo"></action>
|
|
|
+ <action name="getAppTypeInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getAppTypeInfo"></action>
|
|
|
+ <action name="insertWXID" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="insertWXID"></action>
|
|
|
+ <action name="updateNickName" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="updateNickName"></action>
|
|
|
+
|
|
|
+ <action name="latelyFill" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="latelyFill"></action>
|
|
|
+ <action name="getPreCarNo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getPreCarNo"></action>
|
|
|
+ <action name="register" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="register"></action>
|
|
|
+ <action name="examineCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="examineCylinder"></action>
|
|
|
+ <action name="replaceRegNo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="replaceRegNo"></action>
|
|
|
+ <action name="examineSingleCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="examineSingleCylinder"></action>
|
|
|
+ <action name="examineCar" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="examineCar"></action>
|
|
|
+ <action name="uploadCert" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="uploadCert">
|
|
|
+ <interceptor-ref name="fileUpload">
|
|
|
+ <param name="allowedTypes">image/bmp,image/jpg,image/jpeg,image/png,image/gif,image/pjepg</param>
|
|
|
+ <!-- <param name="maximumSize">5242880*2</param> -->
|
|
|
+ <param name="maximumSize">15242880</param>
|
|
|
+ </interceptor-ref>
|
|
|
+ <interceptor-ref name="defaultStack" />
|
|
|
+ </action>
|
|
|
+ <action name="getCylinderProduct" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCylinderProduct"></action>
|
|
|
+ <action name="getCylinderInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCylinderInfo"></action>
|
|
|
+ <action name="getCarInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCarInfo"></action>
|
|
|
+ <action name="deleteCarCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="deleteCarCylinder"></action>
|
|
|
+ <action name="getcarcylinderbyuser" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getcarcylinderbyuser"></action>
|
|
|
+ <action name="insertCylinderInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="insertCylinderInfo"></action>
|
|
|
+ <action name="insertCarInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="insertCarInfo"></action>
|
|
|
+ <action name="insertCarCylinder" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="insertCarCylinder">
|
|
|
+
|
|
|
+
|
|
|
+ </action>
|
|
|
+ <action name="getRedirect" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getRedirect"></action>
|
|
|
+ <action name="getPhoneCode" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getPhoneCode"></action>
|
|
|
+ <action name="getVCode" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getVCode"></action>
|
|
|
+ <action name="testVCode" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="testVCode"></action>
|
|
|
+ <action name="getCity" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCity"></action>
|
|
|
+ <action name="getCity123" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCity123"></action>
|
|
|
+ <action name="getCounty123" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCounty123"></action>
|
|
|
+ <action name="getUnit123" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getUnit123"></action>
|
|
|
+ <action name="getCountry" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCountry"></action>
|
|
|
+ <action name="getUnit" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getUnit"></action>
|
|
|
+ <action name="getCarCylinderInfo" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="getCarCylinderInfo"></action>
|
|
|
+
|
|
|
+ <action name="modifyWorkPersonInfoCheck"
|
|
|
+ class="com.runzhixing.action.ModifyWorkPersonInfoCheckAction" method="modifyWorkPersonInfoCheck"></action>
|
|
|
+ <action name="modifyStationInfoCheck"
|
|
|
+ class="com.runzhixing.action.ModifyStationInfoCheckAction" method="modifyStationInfoCheck"></action>
|
|
|
+ <action name="testingStationInfoCheck"
|
|
|
+ class="com.runzhixing.action.TestingStationInfoCheckAction" method="testingStationInfoCheck"></action>
|
|
|
+ <action name="modifyCompanyform" class="com.runzhixing.action.ModifyCompanyformAction"
|
|
|
+ method="modifyCompanyform"></action>
|
|
|
+ <action name="todayModify" class="com.runzhixing.action.TodayModifyAction"
|
|
|
+ method="todayModify"></action>
|
|
|
+ <action name="todayModify123" class="com.runzhixing.action.TodayModifyAction"
|
|
|
+ method="todayModify123"></action>
|
|
|
+ <action name="testingworkPersonInfo" class="com.runzhixing.action.WorkPersonInfoAction"
|
|
|
+ method="testingworkPersonInfo"></action>
|
|
|
+ <action name="TagdataStatis" class="com.runzhixing.action.TagdataStatisAction"
|
|
|
+ method="TagdataStatis"></action>
|
|
|
+ <action name="tagIssuingfrom" class="com.runzhixing.action.TagIssuingfromAction"
|
|
|
+ method="tagIssuingfrom"></action>
|
|
|
+ <action name="tagIssuingStatistics" class="com.runzhixing.action.TagIssuingfromAction"
|
|
|
+ method="tagIssuingStatistics"></action>
|
|
|
+ <action name="checkSeedataform" class="com.runzhixing.action.CheckSeedataQueryAction"
|
|
|
+ method="checkSeedataQuery"></action>
|
|
|
+ <action name="workPersonInfo" class="com.runzhixing.action.WorkPersonInfoAction"
|
|
|
+ method="workPersonInfo"></action>
|
|
|
+ <action name="fillingMachineInfo" class="com.runzhixing.action.FillingMachineInfoAction"
|
|
|
+ method="fillingMachineInfo"></action>
|
|
|
+ <action name="checkStationInfo" class="com.runzhixing.action.CheckStationInfoAction"
|
|
|
+ method="checkStationInfo"></action>
|
|
|
+ <action name="kaoqinDateStatist" class="com.runzhixing.action.KaoqinDateStatistAction"
|
|
|
+ method="kaoqinDateStatist"></action>
|
|
|
+
|
|
|
+ <action name="CNGQualityInto" class="com.runzhixing.action.CNGQualityIntoAction"
|
|
|
+ method="CNGQualityInto"></action>
|
|
|
+ <action name="specialInto" class="com.runzhixing.action.SpecialIntoAction"
|
|
|
+ method="specialInto"></action>
|
|
|
+ <action name="nonlocalQuery" class="com.runzhixing.action.NonlocalQueryAction"
|
|
|
+ method="nonlocalQuery"></action>
|
|
|
+ <action name="kaoqingQuery" class="com.runzhixing.action.KaoqingQueryAction"
|
|
|
+ method="kaoqingQuery"></action>
|
|
|
+ <action name="releaseAnnformform" class="com.runzhixing.action.CheckAnnounformmentAction"
|
|
|
+ method="releaseAnn"></action>
|
|
|
+ <action name="checkAnnounformment" class="com.runzhixing.action.CheckAnnounformmentAction"
|
|
|
+ method="checkAnnoun"></action>
|
|
|
+ <!-- 修改密码 -->
|
|
|
+ <action name="alterpassword" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="alterpassword"></action>
|
|
|
+
|
|
|
+ <action name="infoview" class="com.runzhixing.action.InfoviewAction"
|
|
|
+ method="infoview"></action>
|
|
|
+ <!-- 查看网络情况 -->
|
|
|
+ <action name="getCNGStationTranInfoList" class="com.runzhixing.action.CNGStationTranInfoAction"
|
|
|
+ method="getCNGStationTranInfoList"></action>
|
|
|
+ <!-- 监察人员管理 -->
|
|
|
+ <action name="Supervisormanagement" class="com.runzhixing.action.SupervisormanagementAction"
|
|
|
+ method="supervisormanagement"></action>
|
|
|
+ <!-- 场所管理 -->
|
|
|
+ <action name="Placemanagement" class="com.runzhixing.action.PlacemanagementAction"
|
|
|
+ method="placemanagement"></action>
|
|
|
+ <!-- 得到原先的告警参数 -->
|
|
|
+ <action name="getoldwarningparam" class="com.runzhixing.action.WarningparasetAction"
|
|
|
+ method="getoldwarningparam"></action>
|
|
|
+ <!-- 设置新的告警参数 -->
|
|
|
+ <action name="warningparaset" class="com.runzhixing.action.WarningparasetAction"
|
|
|
+ method="warningparaset"></action>
|
|
|
+ <!-- 加气机运行状态 -->
|
|
|
+ <action name="aeratedmachinerunningstate"
|
|
|
+ class="com.runzhixing.action.AeratedmachinerunningstateAction"
|
|
|
+ method="aeratedmachinerunningstate"></action>
|
|
|
+ <!-- 人员巡查情况查询 -->
|
|
|
+ <action name="personnelInspection" class="com.runzhixing.action.PersonnelInspectionAction"
|
|
|
+ method="personnelInspection"></action>
|
|
|
+ <!-- 人员巡查情况查询 -->
|
|
|
+ <action name="personnelInspection1" class="com.runzhixing.action.PersonnelInspectionAction"
|
|
|
+ method="personnelInspection1"></action>
|
|
|
+ <!-- 巡查数据查询 -->
|
|
|
+ <action name="inspectiondataQuery" class="com.runzhixing.action.InspectiondataQueryAction"
|
|
|
+ method="inspectiondataQuery"></action>
|
|
|
+
|
|
|
+ <!-- 特种设备数据查询 -->
|
|
|
+ <action name="specialequipmentdataQuery"
|
|
|
+ class="com.runzhixing.action.SpecialequipmentdataQueryAction" method="specialequipmentdataQuery"></action>
|
|
|
+ <!-- 气瓶数据查询 -->
|
|
|
+ <action name="cylinderDataQuery" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
+ method="cylinderDataQuery11"></action>
|
|
|
+ <action name="cylinderDataQuery12" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
+ method="cylinderDataQuery12"></action>
|
|
|
+ <action name="cylinderDataQuery13" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
+ method="cylinderDataQuery13"></action>
|
|
|
+ <action name="cylinderDataQuery14" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
+ method="cylinderDataQuery14"></action>
|
|
|
+ <!-- 气瓶数据查询 -->
|
|
|
+ <action name="cylinderDataQuery1" class="com.runzhixing.action.CylinderDataQueryAction"
|
|
|
+ method="cylinderDataQuery1"></action>
|
|
|
+ <!-- 气瓶将要检测数量查询 -->
|
|
|
+ <action name="cylinderDataQueryagain"
|
|
|
+ class="com.runzhixing.action.CylinderDataQueryagainAction" method="cylinderDataQueryagain"></action>
|
|
|
+ <!-- 当天检验情况 -->
|
|
|
+ <action name="todattestingdataQuery" class="com.runzhixing.action.TestingdataQueryAction"
|
|
|
+ method="todaytestingdataQuery"></action>
|
|
|
+ <!-- 检验数据查询 -->
|
|
|
+ <action name="testingdataQuery" class="com.runzhixing.action.TestingdataQueryAction"
|
|
|
+ method="testingdataQuery"></action>
|
|
|
+ <!-- 车辆数据查询 -->
|
|
|
+ <action name="carsDataQuery" class="com.runzhixing.action.CarsDataQueryAction"
|
|
|
+ method="carsDataQuery"></action>
|
|
|
+ <!-- 车辆数据查询 -->
|
|
|
+ <action name="getCarsDataQuery" class="com.runzhixing.action.CarsDataQueryAction"
|
|
|
+ method="getCarsDataQuery"></action>
|
|
|
+ <!-- 车辆数据查询 -->
|
|
|
+ <action name="carsDataQueryagain" class="com.runzhixing.action.CarsDataQueryAction"
|
|
|
+ method="carsDataQueryagain"></action>
|
|
|
+ <!-- 黑名单查询 -->
|
|
|
+ <action name="blackListQuery" class="com.runzhixing.action.BlackListQueryAction"
|
|
|
+ method="blackListQuery"></action>
|
|
|
+ <!-- CNG质量查询 -->
|
|
|
+ <action name="CNGQualityQuery" class="com.runzhixing.action.CNGQualityQueryAction"
|
|
|
+ method="CNGQualityQuery"></action>
|
|
|
+ <!-- 充装数据查询 -->
|
|
|
+ <action name="fillingDataQuery" class="com.runzhixing.action.FillingDataQueryAction"
|
|
|
+ method="fillingDataQuery"></action>
|
|
|
+ <!-- 改装数据查询 -->
|
|
|
+ <action name="modifiedDataQuery" class="com.runzhixing.action.ModifiedDataQueryAction"
|
|
|
+ method="modifiedDataQuery"></action>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 系统告警日志 -->
|
|
|
+ <action name="systemWarninglog" class="com.runzhixing.action.SystemWarninglogAction"
|
|
|
+ method="systemWarninglog"></action>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 改装数据查询 -->
|
|
|
+ <action name="province" class="com.runzhixing.action.ProvinceAction"
|
|
|
+ method="province"></action>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 改装数据查询 -->
|
|
|
+ <action name="AdvanceSystemwarninglog" class="com.runzhixing.action.SystemWarninglogAction"
|
|
|
+ method="AdvanceSystemwarninglog">
|
|
|
+ <result name="success">/jsp/rzx/log/Systemwarninglog.jsp</result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="makeChart" class="com.runzhixing.action.Test"
|
|
|
+ method="makeChart">
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="hiddenspeStation" class="com.runzhixing.action.SpeStationAction"
|
|
|
+ method="speStationQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenspeStation1" class="com.runzhixing.action.SpeStationAction"
|
|
|
+ method="speStationQuery1">
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="hiddencheckStation" class="com.runzhixing.action.CheckStationAction"
|
|
|
+ method="checkStationQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenoperatorNo" class="com.runzhixing.action.JQJStationAction"
|
|
|
+ method="operatorNoQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenjqj" class="com.runzhixing.action.JQJStationAction"
|
|
|
+ method="jqjQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenCNGStation" class="com.runzhixing.action.CNGStationAction"
|
|
|
+ method="cngstationQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenStation" class="com.runzhixing.action.StationAction"
|
|
|
+ method="stationQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenUnit" class="com.runzhixing.action.UnitAction"
|
|
|
+ method="unitQuery">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenCity" class="com.runzhixing.action.HiddenCityAction"
|
|
|
+ method="hiddenCity">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenjiangaun" class="com.runzhixing.action.HiddenCityAction"
|
|
|
+ method="hiddenjiangaun">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenxuncha" class="com.runzhixing.action.HiddenCityAction"
|
|
|
+ method="hiddenxuncha">
|
|
|
+ </action>
|
|
|
+ <action name="hiddenCountry" class="com.runzhixing.action.HiddenCityAction"
|
|
|
+ method="hiddenCountry">
|
|
|
+ </action>
|
|
|
+ <action name="getstationdetail" class="com.runzhixing.action.HiddenCityAction"
|
|
|
+ method="getstationdetail">
|
|
|
+ </action>
|
|
|
+ <action name="getstationdetailreset" class="com.runzhixing.action.HiddenCityAction"
|
|
|
+ method="getstationdetailreset">
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="operatorDetail" class="com.runzhixing.action.OperatorDetailAction"
|
|
|
+ method="operatorDetail">
|
|
|
+ </action>
|
|
|
+ <action name="machineDetail" class="com.runzhixing.action.MachineDetailActionagain"
|
|
|
+ method="machineDetailAgain">
|
|
|
+ </action>
|
|
|
+ <!-- 数据统计 -->
|
|
|
+ <!-- 充装数据统计 -->
|
|
|
+ <action name="FillingDataStatistics" class="com.runzhixing.action.FillingDataStatisticAction"
|
|
|
+ method="fillingDataStatistic">
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <!-- 气瓶数据统计 -->
|
|
|
+ <action name="CylinderDataStatistics"
|
|
|
+ class="com.runzhixing.action.CylinderDataStatisticsAction" method="cylinderDataStatistics">
|
|
|
+ </action>
|
|
|
+ <!-- 车辆数据统计 -->
|
|
|
+ <action name="CarDataStatistics" class="com.runzhixing.action.CarDataStatisticsAction"
|
|
|
+ method="CarDataStatistics">
|
|
|
+ </action>
|
|
|
+ <!-- 车辆气瓶数量统计 -->
|
|
|
+ <action name="CarCyNumStatistics" class="com.runzhixing.action.CarDataStatisticsAction"
|
|
|
+ method="CarCyNumStatistics">
|
|
|
+ </action>
|
|
|
+ <action name="relogin" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="relogin">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/login/loginType.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/500.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <!-- 气瓶追踪 -->
|
|
|
+ <action name="cylinderFollow" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
+ method="ajaxCylinderFollow">
|
|
|
+ </action>
|
|
|
+
|
|
|
+
|
|
|
+ <action name="downloadExcel" class="com.runzhixing.action.DownloadExcelAction"
|
|
|
+ method="downloadExcel">
|
|
|
+ </action>
|
|
|
+ <action name="checkValidity" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
+ method="CheckValidity1">
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="exportTestingData" class="com.runzhixing.action.ExportData"
|
|
|
+ method="exportTestingData">
|
|
|
+ </action>
|
|
|
+ <action name="spdataList" class="com.runzhixing.action.ExportData"
|
|
|
+ method="spdataList">
|
|
|
+ </action>
|
|
|
+ </package>
|
|
|
+
|
|
|
+ <!-- Add packages here -->
|
|
|
+ <package name="default" namespace="/" extends="struts-default"
|
|
|
+ strict-method-invocation="false">
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <action name="safeExit" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="safeExit">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/login/loginre.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/login/loginre.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="wxLogin" class="com.runzhixing.action.AlterPasswordAction"
|
|
|
+ method="wxLogin">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/applyRegister.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/500.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="getValveHistory" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="getValveHistory">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/ValveHistory.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="getLatelyFill" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="getLatelyFill">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/LatelyFill.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="getQualificationPicture" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="getQualificationPicture">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/CylinderImg.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="loginCng" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
+ method="loginCng">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/CylinderFollow.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="downloadExcel" class="com.runzhixing.action.DownloadExcelAction"
|
|
|
+ method="downloadExcel">
|
|
|
+ </action>
|
|
|
+ <action name="CylinderFollow" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
+ method="cylinderFollow">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/CylinderFollow.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+
|
|
|
+ <action name="machineDetail" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="machineDetail">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/filling/CylinderdataQuery.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <action name="CheckValidity" class="com.runzhixing.action.CylinderFollowAction"
|
|
|
+ method="CheckValidity">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/CheckValidity.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+
|
|
|
+ <action name="machineDetailfill" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="machineDetail1">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/filling/CylinderdataQuery.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="carpublic" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="carpublic">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/carpublic.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="carAudit" class="com.runzhixing.action.CarAuditAction"
|
|
|
+ method="carAudit">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/carDuit.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="getCarChange" class="com.runzhixing.action.CarAuditAction"
|
|
|
+ method="getCarChange">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/CarChange.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="carAuditdo" class="com.runzhixing.action.CarAuditAction"
|
|
|
+ method="carAuditdo">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/carDuit.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="CylinderMonitorListdo" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
+ method="CylinderMonitorListdo">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/CylinderMonitorListdo.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="tagQuerydo" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
+ method="tagQuerydo">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/tagQuerydo.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="cylinderGuiddo" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
+ method="cylinderGuiddo">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/carCylinderGuiddo.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="cylinderGuid" class="com.runzhixing.action.CylinderGuidAction"
|
|
|
+ method="cylinderGuid">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/dataQuery/carCylinderGuid.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="relogin" class="com.runzhixing.action.MachineDetailAction"
|
|
|
+ method="relogin">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/login/loginType.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/500.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+ <action name="Detailbyid" class="com.runzhixing.action.CheckAnnounformmentAction"
|
|
|
+ method="detailbyID">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/rzx/infoMan/detailbyid.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ <action name="safeexit" class="com.runzhixing.action.SafeexitAction"
|
|
|
+ method="safeexit">
|
|
|
+ <result name="success">
|
|
|
+ /jsp/login/loginType.jsp
|
|
|
+ </result>
|
|
|
+ <result name="error">
|
|
|
+ /jsp/fail/nodata.jsp
|
|
|
+ </result>
|
|
|
+ </action>
|
|
|
+
|
|
|
+ </package>
|
|
|
+
|
|
|
+</struts>
|