文件列表
SQL
D:\companyproject\chd_guizhangzhidu\GRCOffice-p51\docs\database-oa\oracle\01appCreate-oa-hd.sql
自动更新SQLD:\companyproject\chd_guizhangzhidu\GRCOffice-p51\src\product\src\main\webapp\WEB-INF\database-oa\update-sql\201907101858.sql
Entity注册D:\companyproject\chd_guizhangzhidu\GRCOffice-p51\src\product\src\main\webapp\WEB-INF\classes\META-INF\app-product-persistence.xml
Service注册
1
2
3
4
5 <!--工具箱-->
<!--工具箱-表单-->
<class>com.hd.rcugrc.product.oa.institution.toolbox.form.entity.ToolboxFormEntity</class>
<!--工具箱-软件-->
<class>com.hd.rcugrc.product.oa.institution.toolbox.software.entity.ToolboxSoftwareEntity</class>D:\companyproject\chd_guizhangzhidu\GRCOffice-p51\src\product\src\main\webapp\WEB-INF\classes\META-INF\spring\hd-product-service.xml
Dwr-service注册
1
2
3
4
5
6
7
8
9
10
11 <!--工具箱-->
<!--工具箱-表单-->
<bean id="toolboxFormService" class="com.hd.rcugrc.product.oa.institution.toolbox.form.service.impl.ToolboxFormServiceImpl">
<property name="formInfoService" ref="hdFormInfoService" />
<property name="oaBaseFunctionService" ref="hd-product-oa-common-service" />
</bean>
<!--工具箱-软件-->
<bean id="toolboxSoftwareService" class="com.hd.rcugrc.product.oa.institution.toolbox.software.service.impl.ToolboxSoftwareServiceImpl">
<property name="formInfoService" ref="hdFormInfoService" />
<property name="oaBaseFunctionService" ref="hd-product-oa-common-service" />
</bean>D:\companyproject\chd_guizhangzhidu\GRCOffice-p51\src\product\src\main\webapp\WEB-INF\dwr\dwr-product.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 <dwr:configuration>
<!--工具箱-->
<!--工具箱软件-->
<dwr:convert class="com.hd.rcugrc.product.oa.institution.toolbox.software.dwr.ToolboxSoftwareBean" type="bean"/>
<!--工具箱表单-->
<dwr:convert class="com.hd.rcugrc.product.oa.institution.toolbox.form.dwr.ToolboxFormBean" type="bean"/>
</dwr:configuration>
-------------------------------
<!--工具箱-->
<!--工具箱-表单-->
<bean id="dwrToolboxFormServiceImpl" class="com.hd.rcugrc.product.oa.institution.toolbox.form.dwr.impl.DwrToolboxFormServiceImpl">
<dwr:remote javascript="dwrToolboxFormService">
<dwr:include method="delbyIds">
</dwr:remote>
<property name="ToolboxFormService" ref="toolboxFormService"/>
</bean>
<!--工具箱-软件-->
<bean id="dwrToolboxSoftwareServiceImpl" class="com.hd.rcugrc.product.oa.institution.toolbox.software.dwr.impl.DwrToolboxSoftwateServiceImpl">
<dwr:remote javascript="dwrToolboxFormService">
<dwr:include method="delbyIds">
</dwr:remote>
<property name="ToolboxSoftwareService" ref="toolboxSoftwareService"/>
</bean>