spring-servlet.xml 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:task="http://www.springframework.org/schema/task"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xmlns:mvc="http://www.springframework.org/schema/mvc"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  12. http://www.springframework.org/schema/task
  13. http://www.springframework.org/schema/task/spring-task-3.0.xsd
  14. http://www.springframework.org/schema/mvc
  15. http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
  16. <!-- 默认的注解映射的支持 -->
  17. <mvc:annotation-driven/>
  18. <!--启用自动扫描 -->
  19. <context:component-scan base-package="cn.com.usky.iot.controller"/>
  20. <!-- 后台任务 -->
  21. <context:component-scan base-package="cn.com.usky.iot.task"/>
  22. <task:annotation-driven scheduler="qbScheduler" mode="proxy"/>
  23. <task:scheduler id="qbScheduler" pool-size="10"/>
  24. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  25. <property name="prefix" value="/opt/"/>
  26. <property name="suffix" value=".jsp"/>
  27. </bean>
  28. <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  29. <property name="configLocation" value="WEB-INF/hibernate.cfg.xml"/>
  30. </bean>
  31. <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
  32. <property name="sessionFactory">
  33. <ref bean="sessionFactory"/>
  34. </property>
  35. </bean>
  36. <bean id="daoQuery" class="cn.com.usky.utils.DaoQuery">
  37. <property name="hibernateTemplate">
  38. <ref bean="hibernateTemplate"/>
  39. </property>
  40. </bean>
  41. <bean id="ytiotTOrderDao" class="cn.com.usky.iot.order.dao.YtiotTOrderDaoImpl">
  42. <property name="hibernateTemplate">
  43. <ref bean="hibernateTemplate"/>
  44. </property>
  45. <property name="daoQuery">
  46. <ref bean="daoQuery"/>
  47. </property>
  48. </bean>
  49. <bean id="ytiotTAdminVerDao" class="cn.com.usky.iot.admin.dao.YtiotTAdminVerDaoImpl">
  50. <property name="hibernateTemplate">
  51. <ref bean="hibernateTemplate"/>
  52. </property>
  53. <property name="daoQuery">
  54. <ref bean="daoQuery"/>
  55. </property>
  56. </bean>
  57. <bean id="ytiotTAdminDao" class="cn.com.usky.iot.admin.dao.YtiotTAdminDaoImpl">
  58. <property name="hibernateTemplate">
  59. <ref bean="hibernateTemplate"/>
  60. </property>
  61. <property name="daoQuery">
  62. <ref bean="daoQuery"/>
  63. </property>
  64. <property name="ytiotTAdminVerDao">
  65. <ref bean="ytiotTAdminVerDao"/>
  66. </property>
  67. <property name="ytiotTOrderDao">
  68. <ref bean="ytiotTOrderDao"/>
  69. </property>
  70. </bean>
  71. <bean id="ytiotTAdminService" class="cn.com.usky.iot.admin.service.YtiotTAdminServicesImpl">
  72. <property name="ytiotTAdminDao">
  73. <ref bean="ytiotTAdminDao"/>
  74. </property>
  75. <property name="ytiotTAdminVerDao">
  76. <ref bean="ytiotTAdminVerDao"/>
  77. </property>
  78. </bean>
  79. <bean id="ytiotTCompanyVerDao" class="cn.com.usky.iot.company.dao.YtiotTCompanyVerDaoImpl">
  80. <property name="hibernateTemplate">
  81. <ref bean="hibernateTemplate"/>
  82. </property>
  83. <property name="daoQuery">
  84. <ref bean="daoQuery"/>
  85. </property>
  86. </bean>
  87. <bean id="ytiotTCompanyDao" class="cn.com.usky.iot.company.dao.YtiotTCompanyDaoImpl">
  88. <property name="hibernateTemplate">
  89. <ref bean="hibernateTemplate"/>
  90. </property>
  91. <property name="daoQuery">
  92. <ref bean="daoQuery"/>
  93. </property>
  94. <property name="ytiotTCompanyVerDao">
  95. <ref bean="ytiotTCompanyVerDao"/>
  96. </property>
  97. <property name="ytiotTOrderDao">
  98. <ref bean="ytiotTOrderDao"/>
  99. </property>
  100. </bean>
  101. <bean id="ytiotTCompanyService" class="cn.com.usky.iot.company.service.YtiotTCompanyServicesImpl">
  102. <property name="ytiotTCompanyDao">
  103. <ref bean="ytiotTCompanyDao"/>
  104. </property>
  105. <property name="ytiotTCompanyVerDao">
  106. <ref bean="ytiotTCompanyVerDao"/>
  107. </property>
  108. </bean>
  109. <bean id="ytiotTAreaverDao" class="cn.com.usky.iot.area.dao.YtiotTAreaverDaoImpl">
  110. <property name="hibernateTemplate">
  111. <ref bean="hibernateTemplate"/>
  112. </property>
  113. <property name="daoQuery">
  114. <ref bean="daoQuery"/>
  115. </property>
  116. </bean>
  117. <bean id="ytiotTAreaDao" class="cn.com.usky.iot.area.dao.YtiotTAreaDaoImpl">
  118. <property name="hibernateTemplate">
  119. <ref bean="hibernateTemplate"/>
  120. </property>
  121. <property name="daoQuery">
  122. <ref bean="daoQuery"/>
  123. </property>
  124. <property name="ytiotTAreaverDao">
  125. <ref bean="ytiotTAreaverDao"/>
  126. </property>
  127. <property name="ytiotTOrderDao">
  128. <ref bean="ytiotTOrderDao"/>
  129. </property>
  130. </bean>
  131. <bean id="ytiotTAreaService" class="cn.com.usky.iot.area.service.YtiotTAreaServicesImpl">
  132. <property name="ytiotTAreaDao">
  133. <ref bean="ytiotTAreaDao"/>
  134. </property>
  135. <property name="ytiotTAreaverDao">
  136. <ref bean="ytiotTAreaverDao"/>
  137. </property>
  138. </bean>
  139. <bean id="ytiotTBuildingverDao" class="cn.com.usky.iot.building.dao.YtiotTBuildingverDaoImpl">
  140. <property name="hibernateTemplate">
  141. <ref bean="hibernateTemplate"/>
  142. </property>
  143. <property name="daoQuery">
  144. <ref bean="daoQuery"/>
  145. </property>
  146. </bean>
  147. <bean id="ytiotTBuildingDao" class="cn.com.usky.iot.building.dao.YtiotTBuildingDaoImpl">
  148. <property name="hibernateTemplate">
  149. <ref bean="hibernateTemplate"/>
  150. </property>
  151. <property name="daoQuery">
  152. <ref bean="daoQuery"/>
  153. </property>
  154. <property name="ytiotTBuildingverDao">
  155. <ref bean="ytiotTBuildingverDao"/>
  156. </property>
  157. <property name="ytiotTOrderDao">
  158. <ref bean="ytiotTOrderDao"/>
  159. </property>
  160. </bean>
  161. <bean id="ytiotTBuildingService" class="cn.com.usky.iot.building.service.YtiotTBuildingServicesImpl">
  162. <property name="ytiotTAreaDao">
  163. <ref bean="ytiotTAreaDao"/>
  164. </property>
  165. <property name="ytiotTBuildingDao">
  166. <ref bean="ytiotTBuildingDao"/>
  167. </property>
  168. <property name="ytiotTBuildingverDao">
  169. <ref bean="ytiotTBuildingverDao"/>
  170. </property>
  171. </bean>
  172. <bean id="ytiotTPointVerDao" class="cn.com.usky.iot.point.dao.YtiotTPointVerDaoImpl">
  173. <property name="hibernateTemplate">
  174. <ref bean="hibernateTemplate"/>
  175. </property>
  176. <property name="daoQuery">
  177. <ref bean="daoQuery"/>
  178. </property>
  179. </bean>
  180. <bean id="ytiotTPointDao" class="cn.com.usky.iot.point.dao.YtiotTPointDaoImpl">
  181. <property name="hibernateTemplate">
  182. <ref bean="hibernateTemplate"/>
  183. </property>
  184. <property name="daoQuery">
  185. <ref bean="daoQuery"/>
  186. </property>
  187. <property name="ytiotTPointVerDao">
  188. <ref bean="ytiotTPointVerDao"/>
  189. </property>
  190. <property name="ytiotTOrderDao">
  191. <ref bean="ytiotTOrderDao"/>
  192. </property>
  193. </bean>
  194. <bean id="ytiotTPointService" class="cn.com.usky.iot.point.service.YtiotTPointServicesImpl">
  195. <property name="ytiotTPointDao">
  196. <ref bean="ytiotTPointDao"/>
  197. </property>
  198. <property name="ytiotTPointVerDao">
  199. <ref bean="ytiotTPointVerDao"/>
  200. </property>
  201. </bean>
  202. <bean id="ytiotTUnitVerDao" class="cn.com.usky.iot.unit.dao.YtiotTUnitVerDaoImpl">
  203. <property name="hibernateTemplate">
  204. <ref bean="hibernateTemplate"/>
  205. </property>
  206. <property name="daoQuery">
  207. <ref bean="daoQuery"/>
  208. </property>
  209. </bean>
  210. <bean id="ytiotVUserCompanyDao" class="cn.com.usky.iot.admin.dao.YtiotVUserCompanyDaoImpl">
  211. <property name="hibernateTemplate">
  212. <ref bean="hibernateTemplate"/>
  213. </property>
  214. <property name="daoQuery">
  215. <ref bean="daoQuery"/>
  216. </property>
  217. </bean>
  218. <bean id="ytiotTUnitDao" class="cn.com.usky.iot.unit.dao.YtiotTUnitDaoImpl">
  219. <property name="hibernateTemplate">
  220. <ref bean="hibernateTemplate"/>
  221. </property>
  222. <property name="daoQuery">
  223. <ref bean="daoQuery"/>
  224. </property>
  225. <property name="ytiotTUnitVerDao">
  226. <ref bean="ytiotTUnitVerDao"/>
  227. </property>
  228. <property name="ytiotTOrderDao">
  229. <ref bean="ytiotTOrderDao"/>
  230. </property>
  231. </bean>
  232. <bean id="ytiotTUnitService" class="cn.com.usky.iot.unit.service.YtiotTUnitServicesImpl">
  233. <property name="ytiotTUnitDao">
  234. <ref bean="ytiotTUnitDao"/>
  235. </property>
  236. <property name="ytiotTUnitVerDao">
  237. <ref bean="ytiotTUnitVerDao"/>
  238. </property>
  239. </bean>
  240. <bean id="ytiotVCompanyDao" class="cn.com.usky.iot.company.dao.YtiotVCompanyDaoImpl">
  241. <property name="hibernateTemplate">
  242. <ref bean="hibernateTemplate"/>
  243. </property>
  244. <property name="daoQuery">
  245. <ref bean="daoQuery"/>
  246. </property>
  247. </bean>
  248. <bean id="ytiotVCompanyService" class="cn.com.usky.iot.company.service.YtiotVCompanyServiceImpl">
  249. <property name="ytiotVCompanyDao">
  250. <ref bean="ytiotVCompanyDao"/>
  251. </property>
  252. <property name="ytiotTAdminDao">
  253. <ref bean="ytiotTAdminDao"/>
  254. </property>
  255. <property name="ytiotVUserCompanyDao">
  256. <ref bean="ytiotVUserCompanyDao"/>
  257. </property>
  258. <property name="ytiotVAlarmDao">
  259. <ref bean="ytiotVAlarmDao"/>
  260. </property>
  261. <property name="ytiotVDataDao">
  262. <ref bean="ytiotVDataDao"/>
  263. </property>
  264. </bean>
  265. <bean id="ytiotVUserphoneDao" class="cn.com.usky.iot.admin.dao.YtiotVUserphoneDaoImpl">
  266. <property name="hibernateTemplate">
  267. <ref bean="hibernateTemplate"/>
  268. </property>
  269. <property name="daoQuery">
  270. <ref bean="daoQuery"/>
  271. </property>
  272. </bean>
  273. <bean id="ytiotVAlarmDao" class="cn.com.usky.iot.alarm.dao.YtiotVAlarmDaoImpl">
  274. <property name="hibernateTemplate">
  275. <ref bean="hibernateTemplate"/>
  276. </property>
  277. <property name="daoQuery">
  278. <ref bean="daoQuery"/>
  279. </property>
  280. </bean>
  281. <bean id="ytiotVAlarmService" class="cn.com.usky.iot.alarm.service.YtiotVAlarmServiceImpl">
  282. <property name="ytiotVAlarmDao">
  283. <ref bean="ytiotVAlarmDao"/>
  284. </property>
  285. <property name="ytiotVUserphoneDao">
  286. <ref bean="ytiotVUserphoneDao"/>
  287. </property>
  288. <property name="ytiotTAdminDao">
  289. <ref bean="ytiotTAdminDao"/>
  290. </property>
  291. <property name="ytiotVUserCompanyDao">
  292. <ref bean="ytiotVUserCompanyDao"/>
  293. </property>
  294. </bean>
  295. <bean id="ytiotVDataDao" class="cn.com.usky.iot.data.dao.YtiotVDataDaoImpl">
  296. <property name="hibernateTemplate">
  297. <ref bean="hibernateTemplate"/>
  298. </property>
  299. <property name="daoQuery">
  300. <ref bean="daoQuery"/>
  301. </property>
  302. </bean>
  303. <bean id="ytiotVDataService" class="cn.com.usky.iot.data.service.YtiotVDataServiceImpl">
  304. <property name="ytiotVCompanyDao">
  305. <ref bean="ytiotVCompanyDao"/>
  306. </property>
  307. <property name="ytiotVDataDao">
  308. <ref bean="ytiotVDataDao"/>
  309. </property>
  310. <property name="ytiotVUserCompanyDao">
  311. <ref bean="ytiotVUserCompanyDao"/>
  312. </property>
  313. <property name="ytiotTAdminDao">
  314. <ref bean="ytiotTAdminDao"/>
  315. </property>
  316. <property name="ytiotVAlarmDao">
  317. <ref bean="ytiotVAlarmDao"/>
  318. </property>
  319. </bean>
  320. <bean id="ytiotVUserCompanyService" class="cn.com.usky.iot.admin.service.YtiotVUserCompanyServiceImpl">
  321. <property name="ytiotVUserCompanyDao">
  322. <ref bean="ytiotVUserCompanyDao"/>
  323. </property>
  324. </bean>
  325. <bean id="excelService" class="cn.com.usky.iot.excel.service.ExcelServiceImpl">
  326. <property name="ytiotVDataService">
  327. <ref bean="ytiotVDataService"/>
  328. </property>
  329. <property name="ytiotVAlarmService">
  330. <ref bean="ytiotVAlarmService"/>
  331. </property>
  332. <property name="ytiotTPatrolPlanService">
  333. <ref bean="ytiotTPatrolPlanService"/>
  334. </property>
  335. <property name="ytiotTInspectionRecordService">
  336. <ref bean="ytiotTInspectionRecordService"/>
  337. </property>
  338. <property name="ytiotTRouteService">
  339. <ref bean="ytiotTRouteService"/>
  340. </property>
  341. <property name="ytiotTInspectorsService">
  342. <ref bean="ytiotTInspectorsService"/>
  343. </property>
  344. <property name="ytiotTPatrolPointService">
  345. <ref bean="ytiotTPatrolPointService"/>
  346. </property>
  347. <property name="ytiotTQrcodeAnalysisService">
  348. <ref bean="ytiotTQrcodeAnalysisService"/>
  349. </property>
  350. <property name="ytiotTMaintenancePlanService">
  351. <ref bean="ytiotTMaintenancePlanService"/>
  352. </property>
  353. <property name="ytiotTQrcodeAnalysis2Service">
  354. <ref bean="ytiotTQrcodeAnalysis2Service"/>
  355. </property>
  356. <property name="ytiotTMaintenanceRecordService">
  357. <ref bean="ytiotTMaintenanceRecordService"/>
  358. </property>
  359. <property name="ytiotTRoute2Service">
  360. <ref bean="ytiotTRoute2Service"/>
  361. </property>
  362. <property name="ytiotTMaintenanceService">
  363. <ref bean="ytiotTMaintenanceService"/>
  364. </property>
  365. <property name="ytiotTMaintenancePersonService">
  366. <ref bean="ytiotTMaintenancePersonService"/>
  367. </property>
  368. <property name="ytiotXjInspectionPointsService">
  369. <ref bean="ytiotXjInspectionPointsService"/>
  370. </property>
  371. <property name="ytiotXjInspectorsService">
  372. <ref bean="ytiotXjInspectorsService"/>
  373. </property>
  374. <property name="ytiotXjPlanMasterService">
  375. <ref bean="ytiotXjPlanMasterService"/>
  376. </property>
  377. <property name="ytiotXjSpotOperationRecordService">
  378. <ref bean="ytiotXjSpotOperationRecordService"/>
  379. </property>
  380. <property name="ytiotXjEventProcessingService">
  381. <ref bean="ytiotXjEventProcessingService"/>
  382. </property>
  383. <property name="ytiotVUserCompanyDao">
  384. <ref bean="ytiotVUserCompanyDao"/>
  385. </property>
  386. <property name="ytiotVAlarmDao">
  387. <ref bean="ytiotVAlarmDao"/>
  388. </property>
  389. </bean>
  390. <bean id="ytiotTPatrolPlanDao" class="cn.com.usky.iot.patrolplan.dao.YtiotTPatrolPlanDaoImpl">
  391. <property name="hibernateTemplate">
  392. <ref bean="hibernateTemplate"/>
  393. </property>
  394. <property name="daoQuery">
  395. <ref bean="daoQuery"/>
  396. </property>
  397. <property name="ytiotTOrderDao">
  398. <ref bean="ytiotTOrderDao"/>
  399. </property>
  400. </bean>
  401. <bean id="ytiotTPatrolPlanService" class="cn.com.usky.iot.patrolplan.service.YtiotTPatrolPlanServicesImpl">
  402. <property name="ytiotTPatrolPlanDao">
  403. <ref bean="ytiotTPatrolPlanDao"/>
  404. </property>
  405. <property name="ytiotTInspectorsDao">
  406. <ref bean="ytiotTInspectorsDao"/>
  407. </property>
  408. <property name="ytiotTRouteDao">
  409. <ref bean="ytiotTRouteDao"/>
  410. </property>
  411. <property name="ytiotTAdminDao">
  412. <ref bean="ytiotTAdminDao"/>
  413. </property>
  414. <property name="ytiotVUserCompanyDao">
  415. <ref bean="ytiotVUserCompanyDao"/>
  416. </property>
  417. </bean>
  418. <bean id="ytiotTInspectorsDao" class="cn.com.usky.iot.inspectors.dao.YtiotTInspectorsDaoImpl">
  419. <property name="hibernateTemplate">
  420. <ref bean="hibernateTemplate"/>
  421. </property>
  422. <property name="daoQuery">
  423. <ref bean="daoQuery"/>
  424. </property>
  425. <property name="ytiotTOrderDao">
  426. <ref bean="ytiotTOrderDao"/>
  427. </property>
  428. </bean>
  429. <bean id="ytiotTInspectorsService" class="cn.com.usky.iot.inspectors.service.YtiotTInspectorsServicesImpl">
  430. <property name="ytiotTInspectorsDao">
  431. <ref bean="ytiotTInspectorsDao"/>
  432. </property>
  433. <property name="ytiotVUserCompanyDao">
  434. <ref bean="ytiotVUserCompanyDao"/>
  435. </property>
  436. </bean>
  437. <bean id="ytiotTRouteDao" class="cn.com.usky.iot.route.dao.YtiotTRouteDaoImpl">
  438. <property name="hibernateTemplate">
  439. <ref bean="hibernateTemplate"/>
  440. </property>
  441. <property name="daoQuery">
  442. <ref bean="daoQuery"/>
  443. </property>
  444. <property name="ytiotTOrderDao">
  445. <ref bean="ytiotTOrderDao"/>
  446. </property>
  447. </bean>
  448. <bean id="ytiotTRouteService" class="cn.com.usky.iot.route.service.YtiotTRouteServicesImpl">
  449. <property name="ytiotTRouteDao">
  450. <ref bean="ytiotTRouteDao"/>
  451. </property>
  452. <property name="ytiotTAdminDao">
  453. <ref bean="ytiotTAdminDao"/>
  454. </property>
  455. <property name="ytiotVUserCompanyDao">
  456. <ref bean="ytiotVUserCompanyDao"/>
  457. </property>
  458. </bean>
  459. <bean id="ytiotTQrcodeAnalysisDao" class="cn.com.usky.iot.qrcodeanalysis.dao.YtiotTQrcodeAnalysisDaoImpl">
  460. <property name="hibernateTemplate">
  461. <ref bean="hibernateTemplate"/>
  462. </property>
  463. <property name="daoQuery">
  464. <ref bean="daoQuery"/>
  465. </property>
  466. <property name="ytiotTOrderDao">
  467. <ref bean="ytiotTOrderDao"/>
  468. </property>
  469. </bean>
  470. <bean id="ytiotTQrcodeAnalysisService"
  471. class="cn.com.usky.iot.qrcodeanalysis.service.YtiotTQrcodeAnalysisServicesImpl">
  472. <property name="ytiotTQrcodeAnalysisDao">
  473. <ref bean="ytiotTQrcodeAnalysisDao"/>
  474. </property>
  475. <property name="ytiotVUserCompanyDao">
  476. <ref bean="ytiotVUserCompanyDao"/>
  477. </property>
  478. </bean>
  479. <bean id="ytiotTQrcodeAnalysis2Dao" class="cn.com.usky.iot.qrcodeanalysis2.dao.YtiotTQrcodeAnalysis2DaoImpl">
  480. <property name="hibernateTemplate">
  481. <ref bean="hibernateTemplate"/>
  482. </property>
  483. <property name="daoQuery">
  484. <ref bean="daoQuery"/>
  485. </property>
  486. <property name="ytiotTOrderDao">
  487. <ref bean="ytiotTOrderDao"/>
  488. </property>
  489. </bean>
  490. <bean id="ytiotTQrcodeAnalysis2Service"
  491. class="cn.com.usky.iot.qrcodeanalysis2.service.YtiotTQrcodeAnalysis2ServicesImpl">
  492. <property name="ytiotTQrcodeAnalysis2Dao">
  493. <ref bean="ytiotTQrcodeAnalysis2Dao"/>
  494. </property>
  495. <property name="ytiotVUserCompanyDao">
  496. <ref bean="ytiotVUserCompanyDao"/>
  497. </property>
  498. </bean>
  499. <bean id="ytiotTMaintenanceDao" class="cn.com.usky.iot.maintenance.dao.YtiotTMaintenanceDaoImpl">
  500. <property name="hibernateTemplate">
  501. <ref bean="hibernateTemplate"/>
  502. </property>
  503. <property name="daoQuery">
  504. <ref bean="daoQuery"/>
  505. </property>
  506. <property name="ytiotTOrderDao">
  507. <ref bean="ytiotTOrderDao"/>
  508. </property>
  509. </bean>
  510. <bean id="ytiotTMaintenanceService" class="cn.com.usky.iot.maintenance.service.YtiotTMaintenanceServicesImpl">
  511. <property name="ytiotTMaintenanceDao">
  512. <ref bean="ytiotTMaintenanceDao"/>
  513. </property>
  514. <property name="ytiotTQrcodeAnalysis2Dao">
  515. <ref bean="ytiotTQrcodeAnalysis2Dao"/>
  516. </property>
  517. <property name="ytiotTAdminDao">
  518. <ref bean="ytiotTAdminDao"/>
  519. </property>
  520. <property name="ytiotVUserCompanyDao">
  521. <ref bean="ytiotVUserCompanyDao"/>
  522. </property>
  523. </bean>
  524. <bean id="ytiotTRoute2Dao" class="cn.com.usky.iot.route2.dao.YtiotTRoute2DaoImpl">
  525. <property name="hibernateTemplate">
  526. <ref bean="hibernateTemplate"/>
  527. </property>
  528. <property name="daoQuery">
  529. <ref bean="daoQuery"/>
  530. </property>
  531. <property name="ytiotTOrderDao">
  532. <ref bean="ytiotTOrderDao"/>
  533. </property>
  534. </bean>
  535. <bean id="ytiotTRoute2Service" class="cn.com.usky.iot.route2.service.YtiotTRoute2ServicesImpl">
  536. <property name="ytiotTRoute2Dao">
  537. <ref bean="ytiotTRoute2Dao"/>
  538. </property>
  539. <property name="ytiotTAdminDao">
  540. <ref bean="ytiotTAdminDao"/>
  541. </property>
  542. <property name="ytiotVUserCompanyDao">
  543. <ref bean="ytiotVUserCompanyDao"/>
  544. </property>
  545. </bean>
  546. <bean id="ytiotTMaintenancePersonDao" class="cn.com.usky.iot.maintenanceperson.dao.YtiotTMaintenancePersonDaoImpl">
  547. <property name="hibernateTemplate">
  548. <ref bean="hibernateTemplate"/>
  549. </property>
  550. <property name="daoQuery">
  551. <ref bean="daoQuery"/>
  552. </property>
  553. <property name="ytiotTOrderDao">
  554. <ref bean="ytiotTOrderDao"/>
  555. </property>
  556. </bean>
  557. <bean id="ytiotTMaintenancePersonService"
  558. class="cn.com.usky.iot.maintenanceperson.service.YtiotTMaintenancePersonServicesImpl">
  559. <property name="ytiotTMaintenancePersonDao">
  560. <ref bean="ytiotTMaintenancePersonDao"/>
  561. </property>
  562. <property name="ytiotVUserCompanyDao">
  563. <ref bean="ytiotVUserCompanyDao"/>
  564. </property>
  565. </bean>
  566. <bean id="ytiotTMaintenancePlanDao" class="cn.com.usky.iot.maintenanceplan.dao.YtiotTMaintenancePlanDaoImpl">
  567. <property name="hibernateTemplate">
  568. <ref bean="hibernateTemplate"/>
  569. </property>
  570. <property name="daoQuery">
  571. <ref bean="daoQuery"/>
  572. </property>
  573. <property name="ytiotTOrderDao">
  574. <ref bean="ytiotTOrderDao"/>
  575. </property>
  576. </bean>
  577. <bean id="ytiotTMaintenancePlanService"
  578. class="cn.com.usky.iot.maintenanceplan.service.YtiotTMaintenancePlanServicesImpl">
  579. <property name="ytiotTMaintenancePlanDao">
  580. <ref bean="ytiotTMaintenancePlanDao"/>
  581. </property>
  582. <property name="ytiotTMaintenancePersonDao">
  583. <ref bean="ytiotTMaintenancePersonDao"/>
  584. </property>
  585. <property name="ytiotTRoute2Dao">
  586. <ref bean="ytiotTRoute2Dao"/>
  587. </property>
  588. <property name="ytiotTAdminDao">
  589. <ref bean="ytiotTAdminDao"/>
  590. </property>
  591. <property name="ytiotVUserCompanyDao">
  592. <ref bean="ytiotVUserCompanyDao"/>
  593. </property>
  594. </bean>
  595. <bean id="ytiotTMaintenanceRecordDao" class="cn.com.usky.iot.maintenancerecord.dao.YtiotTMaintenanceRecordDaoImpl">
  596. <property name="hibernateTemplate">
  597. <ref bean="hibernateTemplate"/>
  598. </property>
  599. <property name="daoQuery">
  600. <ref bean="daoQuery"/>
  601. </property>
  602. <property name="ytiotTOrderDao">
  603. <ref bean="ytiotTOrderDao"/>
  604. </property>
  605. </bean>
  606. <bean id="ytiotTMaintenanceRecordService"
  607. class="cn.com.usky.iot.maintenancerecord.service.YtiotTMaintenanceRecordServicesImpl">
  608. <property name="ytiotTMaintenanceRecordDao">
  609. <ref bean="ytiotTMaintenanceRecordDao"/>
  610. </property>
  611. <property name="ytiotTMaintenanceDao">
  612. <ref bean="ytiotTMaintenanceDao"/>
  613. </property>
  614. <property name="ytiotTQrcodeAnalysis2Dao">
  615. <ref bean="ytiotTQrcodeAnalysis2Dao"/>
  616. </property>
  617. <property name="ytiotTRoute2Dao">
  618. <ref bean="ytiotTRoute2Dao"/>
  619. </property>
  620. <property name="ytiotTMaintenancePersonDao">
  621. <ref bean="ytiotTMaintenancePersonDao"/>
  622. </property>
  623. <property name="ytiotTAdminDao">
  624. <ref bean="ytiotTAdminDao"/>
  625. </property>
  626. <property name="ytiotVUserCompanyDao">
  627. <ref bean="ytiotVUserCompanyDao"/>
  628. </property>
  629. </bean>
  630. <bean id="ytiotTPatrolPointDao" class="cn.com.usky.iot.patrolpoint.dao.YtiotTPatrolPointDaoImpl">
  631. <property name="hibernateTemplate">
  632. <ref bean="hibernateTemplate"/>
  633. </property>
  634. <property name="daoQuery">
  635. <ref bean="daoQuery"/>
  636. </property>
  637. <property name="ytiotTOrderDao">
  638. <ref bean="ytiotTOrderDao"/>
  639. </property>
  640. </bean>
  641. <bean id="ytiotTPatrolPointService" class="cn.com.usky.iot.patrolpoint.service.YtiotTPatrolPointServicesImpl">
  642. <property name="ytiotTPatrolPointDao">
  643. <ref bean="ytiotTPatrolPointDao"/>
  644. </property>
  645. <property name="ytiotTQrcodeAnalysisDao">
  646. <ref bean="ytiotTQrcodeAnalysisDao"/>
  647. </property>
  648. <property name="ytiotTAdminDao">
  649. <ref bean="ytiotTAdminDao"/>
  650. </property>
  651. <property name="ytiotVUserCompanyDao">
  652. <ref bean="ytiotVUserCompanyDao"/>
  653. </property>
  654. </bean>
  655. <bean id="ytiotTInspectionRecordDao" class="cn.com.usky.iot.inspectionrecord.dao.YtiotTInspectionRecordDaoImpl">
  656. <property name="hibernateTemplate">
  657. <ref bean="hibernateTemplate"/>
  658. </property>
  659. <property name="daoQuery">
  660. <ref bean="daoQuery"/>
  661. </property>
  662. <property name="ytiotTOrderDao">
  663. <ref bean="ytiotTOrderDao"/>
  664. </property>
  665. </bean>
  666. <bean id="ytiotTInspectionRecordService"
  667. class="cn.com.usky.iot.inspectionrecord.service.YtiotTInspectionRecordServicesImpl">
  668. <property name="ytiotTInspectionRecordDao">
  669. <ref bean="ytiotTInspectionRecordDao"/>
  670. </property>
  671. <property name="ytiotTPatrolPointDao">
  672. <ref bean="ytiotTPatrolPointDao"/>
  673. </property>
  674. <property name="ytiotTQrcodeAnalysisDao">
  675. <ref bean="ytiotTQrcodeAnalysisDao"/>
  676. </property>
  677. <property name="ytiotTRouteDao">
  678. <ref bean="ytiotTRouteDao"/>
  679. </property>
  680. <property name="ytiotTInspectorsDao">
  681. <ref bean="ytiotTInspectorsDao"/>
  682. </property>
  683. <property name="ytiotTAdminDao">
  684. <ref bean="ytiotTAdminDao"/>
  685. </property>
  686. <property name="ytiotVUserCompanyDao">
  687. <ref bean="ytiotVUserCompanyDao"/>
  688. </property>
  689. </bean>
  690. <bean id="ytiotQueryService" class="cn.com.usky.iot.query.service.YtiotQueryServiceImpl">
  691. <property name="ytiotVAlarmDao">
  692. <ref bean="ytiotVAlarmDao"/>
  693. </property>
  694. <property name="ytiotVDataDao">
  695. <ref bean="ytiotVDataDao"/>
  696. </property>
  697. <property name="ytiotVUserphoneDao">
  698. <ref bean="ytiotVUserphoneDao"/>
  699. </property>
  700. <property name="ytiotTAdminDao">
  701. <ref bean="ytiotTAdminDao"/>
  702. </property>
  703. <property name="ytiotVUserCompanyDao">
  704. <ref bean="ytiotVUserCompanyDao"/>
  705. </property>
  706. <property name="ytiotQueryDao">
  707. <ref bean="ytiotQueryDao"/>
  708. </property>
  709. </bean>
  710. <bean id="ytiotQueryDao" class="cn.com.usky.iot.query.dao.YtiotQueryDaoImpl">
  711. <property name="daoQuery">
  712. <ref bean="daoQuery"/>
  713. </property>
  714. </bean>
  715. <bean id="ytiotVVideoAlarmService" class="cn.com.usky.iot.video.service.YtiotVVideoAlarmServiceImpl">
  716. <property name="ytiotVAlarmDao">
  717. <ref bean="ytiotVAlarmDao"/>
  718. </property>
  719. </bean>
  720. <bean id="ytiotTcAlarmPackagesDao" class="cn.com.usky.iot.alarmpackages.dao.YtiotTcAlarmPackagesDaoImpl">
  721. <property name="hibernateTemplate">
  722. <ref bean="hibernateTemplate"/>
  723. </property>
  724. <property name="daoQuery">
  725. <ref bean="daoQuery"/>
  726. </property>
  727. <property name="ytiotTOrderDao">
  728. <ref bean="ytiotTOrderDao"/>
  729. </property>
  730. </bean>
  731. <bean id="ytiotTcAlarmPackagesZbDao" class="cn.com.usky.iot.alarmpackageszb.dao.YtiotTcAlarmPackagesZbDaoImpl">
  732. <property name="hibernateTemplate">
  733. <ref bean="hibernateTemplate"/>
  734. </property>
  735. <property name="daoQuery">
  736. <ref bean="daoQuery"/>
  737. </property>
  738. <property name="ytiotTOrderDao">
  739. <ref bean="ytiotTOrderDao"/>
  740. </property>
  741. </bean>
  742. <bean id="ytiotTOutcryPackageService" class="cn.com.usky.iot.outcrypackage.service.YtiotTOutcryPackageServicesImpl">
  743. <property name="ytiotTcAlarmPackagesDao">
  744. <ref bean="ytiotTcAlarmPackagesDao"/>
  745. </property>
  746. <property name="ytiotTcAlarmPackagesZbDao">
  747. <ref bean="ytiotTcAlarmPackagesZbDao"/>
  748. </property>
  749. <property name="ytiotVCompanyDao">
  750. <ref bean="ytiotVCompanyDao"/>
  751. </property>
  752. </bean>
  753. <!-- 东方明珠-杨浦项目首页 -->
  754. <bean id="ytiotVObjectDao" class="cn.com.usky.iot.object.dao.YtiotVObjectDaoImpl">
  755. <property name="daoQuery">
  756. <ref bean="daoQuery"/>
  757. </property>
  758. </bean>
  759. <bean id="ytiotFrontpageQueryService" class="cn.com.usky.iot.frontpage.service.YtiotFrontpageQueryServiceImpl">
  760. <property name="ytiotTAdminDao">
  761. <ref bean="ytiotTAdminDao"/>
  762. </property>
  763. <property name="ytiotVUserCompanyDao">
  764. <ref bean="ytiotVUserCompanyDao"/>
  765. </property>
  766. <property name="ytiotVCompanyDao">
  767. <ref bean="ytiotVCompanyDao"/>
  768. </property>
  769. <property name="ytiotVAlarmDao">
  770. <ref bean="ytiotVAlarmDao"/>
  771. </property>
  772. <property name="ytiotVObjectDao">
  773. <ref bean="ytiotVObjectDao"/>
  774. </property>
  775. <property name="ytiotVUserphoneDao">
  776. <ref bean="ytiotVUserphoneDao"/>
  777. </property>
  778. </bean>
  779. <!-- 东方明珠-杨浦项目首页结束 -->
  780. <!-- 巡检、维保开始 -->
  781. <bean id="ytiotXjInspectionPointsDao" class="cn.com.usky.iot.xjinspectionpoints.dao.YtiotXjInspectionPointsDaoImpl">
  782. <property name="hibernateTemplate">
  783. <ref bean="hibernateTemplate"/>
  784. </property>
  785. <property name="daoQuery">
  786. <ref bean="daoQuery"/>
  787. </property>
  788. <property name="ytiotTOrderDao">
  789. <ref bean="ytiotTOrderDao"/>
  790. </property>
  791. <property name="ytiotXjSpotEquipmentDao">
  792. <ref bean="ytiotXjSpotEquipmentDao"/>
  793. </property>
  794. </bean>
  795. <bean id="ytiotXjInspectorsDao" class="cn.com.usky.iot.xjinspectors.dao.YtiotXjInspectorsDaoImpl">
  796. <property name="hibernateTemplate">
  797. <ref bean="hibernateTemplate"/>
  798. </property>
  799. <property name="daoQuery">
  800. <ref bean="daoQuery"/>
  801. </property>
  802. <property name="ytiotTOrderDao">
  803. <ref bean="ytiotTOrderDao"/>
  804. </property>
  805. <property name="ytiotXjInspectorsCompanyDao">
  806. <ref bean="ytiotXjInspectorsCompanyDao"/>
  807. </property>
  808. <property name="ytiotVUserCompanyDao">
  809. <ref bean="ytiotVUserCompanyDao"/>
  810. </property>
  811. </bean>
  812. <bean id="ytiotXjInspectorsCompanyDao"
  813. class="cn.com.usky.iot.xjinspectorscompany.dao.YtiotXjInspectorsCompanyDaoImpl">
  814. <property name="hibernateTemplate">
  815. <ref bean="hibernateTemplate"/>
  816. </property>
  817. <property name="daoQuery">
  818. <ref bean="daoQuery"/>
  819. </property>
  820. <property name="ytiotTOrderDao">
  821. <ref bean="ytiotTOrderDao"/>
  822. </property>
  823. </bean>
  824. <bean id="ytiotXjOperationRecordPhotosDao"
  825. class="cn.com.usky.iot.xjoperationrecordphotos.dao.YtiotXjOperationRecordPhotosDaoImpl">
  826. <property name="hibernateTemplate">
  827. <ref bean="hibernateTemplate"/>
  828. </property>
  829. <property name="daoQuery">
  830. <ref bean="daoQuery"/>
  831. </property>
  832. <property name="ytiotTOrderDao">
  833. <ref bean="ytiotTOrderDao"/>
  834. </property>
  835. </bean>
  836. <bean id="ytiotXjPlanChildDao" class="cn.com.usky.iot.xjplanchild.dao.YtiotXjPlanChildDaoImpl">
  837. <property name="hibernateTemplate">
  838. <ref bean="hibernateTemplate"/>
  839. </property>
  840. <property name="daoQuery">
  841. <ref bean="daoQuery"/>
  842. </property>
  843. <property name="ytiotTOrderDao">
  844. <ref bean="ytiotTOrderDao"/>
  845. </property>
  846. <property name="ytiotXjSpotOperationRecordDao">
  847. <ref bean="ytiotXjSpotOperationRecordDao"/>
  848. </property>
  849. </bean>
  850. <bean id="ytiotXjPlanMasterDao" class="cn.com.usky.iot.xjplanmaster.dao.YtiotXjPlanMasterDaoImpl">
  851. <property name="hibernateTemplate">
  852. <ref bean="hibernateTemplate"/>
  853. </property>
  854. <property name="daoQuery">
  855. <ref bean="daoQuery"/>
  856. </property>
  857. <property name="ytiotTOrderDao">
  858. <ref bean="ytiotTOrderDao"/>
  859. </property>
  860. <property name="ytiotXjPlanChildDao">
  861. <ref bean="ytiotXjPlanChildDao"/>
  862. </property>
  863. <property name="ytiotXjPlanSpotDao">
  864. <ref bean="ytiotXjPlanSpotDao"/>
  865. </property>
  866. </bean>
  867. <bean id="ytiotXjPlanSpotDao" class="cn.com.usky.iot.xjplanspot.dao.YtiotXjPlanSpotDaoImpl">
  868. <property name="hibernateTemplate">
  869. <ref bean="hibernateTemplate"/>
  870. </property>
  871. <property name="daoQuery">
  872. <ref bean="daoQuery"/>
  873. </property>
  874. <property name="ytiotTOrderDao">
  875. <ref bean="ytiotTOrderDao"/>
  876. </property>
  877. </bean>
  878. <bean id="ytiotXjPlanTeamDao" class="cn.com.usky.iot.xjplanteam.dao.YtiotXjPlanTeamDaoImpl">
  879. <property name="hibernateTemplate">
  880. <ref bean="hibernateTemplate"/>
  881. </property>
  882. <property name="daoQuery">
  883. <ref bean="daoQuery"/>
  884. </property>
  885. <property name="ytiotTOrderDao">
  886. <ref bean="ytiotTOrderDao"/>
  887. </property>
  888. </bean>
  889. <bean id="ytiotXjSpotEquipmentDao" class="cn.com.usky.iot.xjspotequipment.dao.YtiotXjSpotEquipmentDaoImpl">
  890. <property name="hibernateTemplate">
  891. <ref bean="hibernateTemplate"/>
  892. </property>
  893. <property name="daoQuery">
  894. <ref bean="daoQuery"/>
  895. </property>
  896. <property name="ytiotTOrderDao">
  897. <ref bean="ytiotTOrderDao"/>
  898. </property>
  899. </bean>
  900. <bean id="ytiotXjSpotOperationRecordDao"
  901. class="cn.com.usky.iot.xjspotoperationrecord.dao.YtiotXjSpotOperationRecordDaoImpl">
  902. <property name="hibernateTemplate">
  903. <ref bean="hibernateTemplate"/>
  904. </property>
  905. <property name="daoQuery">
  906. <ref bean="daoQuery"/>
  907. </property>
  908. <property name="ytiotTOrderDao">
  909. <ref bean="ytiotTOrderDao"/>
  910. </property>
  911. </bean>
  912. <bean id="ytiotXjTeamPersonnelDao" class="cn.com.usky.iot.xjteampersonnel.dao.YtiotXjTeamPersonnelDaoImpl">
  913. <property name="hibernateTemplate">
  914. <ref bean="hibernateTemplate"/>
  915. </property>
  916. <property name="daoQuery">
  917. <ref bean="daoQuery"/>
  918. </property>
  919. <property name="ytiotTOrderDao">
  920. <ref bean="ytiotTOrderDao"/>
  921. </property>
  922. </bean>
  923. <bean id="ytiotXjInspectorsService" class="cn.com.usky.iot.xjinspectors.service.YtiotXjInspectorsServicesImpl">
  924. <property name="ytiotXjInspectorsCompanyDao">
  925. <ref bean="ytiotXjInspectorsCompanyDao"/>
  926. </property>
  927. <property name="ytiotVUserCompanyDao">
  928. <ref bean="ytiotVUserCompanyDao"/>
  929. </property>
  930. <property name="ytiotXjInspectorsDao">
  931. <ref bean="ytiotXjInspectorsDao"/>
  932. </property>
  933. <property name="ytiotXjTeamPersonnelDao">
  934. <ref bean="ytiotXjTeamPersonnelDao"/>
  935. </property>
  936. <property name="ytiotXjPlanTeamDao">
  937. <ref bean="ytiotXjPlanTeamDao"/>
  938. </property>
  939. </bean>
  940. <bean id="ytiotXjInspectionPointsService"
  941. class="cn.com.usky.iot.xjinspectionpoints.service.YtiotXjInspectionPointsServicesImpl">
  942. <property name="ytiotXjInspectionPointsDao">
  943. <ref bean="ytiotXjInspectionPointsDao"/>
  944. </property>
  945. <property name="ytiotTAdminDao">
  946. <ref bean="ytiotTAdminDao"/>
  947. </property>
  948. <property name="ytiotVUserCompanyDao">
  949. <ref bean="ytiotVUserCompanyDao"/>
  950. </property>
  951. <property name="ytiotXjSpotEquipmentDao">
  952. <ref bean="ytiotXjSpotEquipmentDao"/>
  953. </property>
  954. <property name="ytiotVCompanyDao">
  955. <ref bean="ytiotVCompanyDao"/>
  956. </property>
  957. <property name="ytiotXjSpotOperationRecordDao">
  958. <ref bean="ytiotXjSpotOperationRecordDao"/>
  959. </property>
  960. <property name="ytiotXjPlanSpotDao">
  961. <ref bean="ytiotXjPlanSpotDao"/>
  962. </property>
  963. <property name="ytiotXjPlanTeamDao">
  964. <ref bean="ytiotXjPlanTeamDao"/>
  965. </property>
  966. <property name="ytiotVDeviceStatusDao">
  967. <ref bean="ytiotVDeviceStatusDao"/>
  968. </property>
  969. <property name="ytiotXjPlanMasterDao">
  970. <ref bean="ytiotXjPlanMasterDao"/>
  971. </property>
  972. </bean>
  973. <bean id="ytiotXjPlanMasterService" class="cn.com.usky.iot.xjplanmaster.service.YtiotXjPlanMasterServicesImpl">
  974. <property name="ytiotXjPlanMasterDao">
  975. <ref bean="ytiotXjPlanMasterDao"/>
  976. </property>
  977. <property name="ytiotVUserCompanyDao">
  978. <ref bean="ytiotVUserCompanyDao"/>
  979. </property>
  980. <property name="ytiotTAdminDao">
  981. <ref bean="ytiotTAdminDao"/>
  982. </property>
  983. <property name="ytiotXjInspectionPointsDao">
  984. <ref bean="ytiotXjInspectionPointsDao"/>
  985. </property>
  986. <property name="ytiotXjInspectorsDao">
  987. <ref bean="ytiotXjInspectorsDao"/>
  988. </property>
  989. <property name="ytiotXjPlanTeamDao">
  990. <ref bean="ytiotXjPlanTeamDao"/>
  991. </property>
  992. <property name="ytiotXjPlanSpotDao">
  993. <ref bean="ytiotXjPlanSpotDao"/>
  994. </property>
  995. <property name="ytiotXjPlanChildDao">
  996. <ref bean="ytiotXjPlanChildDao"/>
  997. </property>
  998. <property name="ytiotXjSpotOperationRecordDao">
  999. <ref bean="ytiotXjSpotOperationRecordDao"/>
  1000. </property>
  1001. </bean>
  1002. <bean id="ytiotXjPlanChildService" class="cn.com.usky.iot.xjplanchild.service.YtiotXjPlanChildServicesImpl">
  1003. <property name="ytiotXjPlanChildDao">
  1004. <ref bean="ytiotXjPlanChildDao"/>
  1005. </property>
  1006. <property name="ytiotXjPlanMasterDao">
  1007. <ref bean="ytiotXjPlanMasterDao"/>
  1008. </property>
  1009. <property name="ytiotVUserCompanyDao">
  1010. <ref bean="ytiotVUserCompanyDao"/>
  1011. </property>
  1012. <property name="ytiotTAdminDao">
  1013. <ref bean="ytiotTAdminDao"/>
  1014. </property>
  1015. <property name="ytiotXjInspectionPointsDao">
  1016. <ref bean="ytiotXjInspectionPointsDao"/>
  1017. </property>
  1018. <property name="ytiotXjInspectorsDao">
  1019. <ref bean="ytiotXjInspectorsDao"/>
  1020. </property>
  1021. <property name="ytiotXjPlanTeamDao">
  1022. <ref bean="ytiotXjPlanTeamDao"/>
  1023. </property>
  1024. <property name="ytiotXjPlanSpotDao">
  1025. <ref bean="ytiotXjPlanSpotDao"/>
  1026. </property>
  1027. </bean>
  1028. <bean id="ytiotXjPlanTeamService" class="cn.com.usky.iot.xjplanteam.service.YtiotXjPlanTeamServicesImpl">
  1029. <property name="ytiotXjPlanTeamDao">
  1030. <ref bean="ytiotXjPlanTeamDao"/>
  1031. </property>
  1032. <property name="ytiotXjInspectorsDao">
  1033. <ref bean="ytiotXjInspectorsDao"/>
  1034. </property>
  1035. <property name="ytiotVUserCompanyDao">
  1036. <ref bean="ytiotVUserCompanyDao"/>
  1037. </property>
  1038. <property name="ytiotXjInspectorsCompanyDao">
  1039. <ref bean="ytiotXjInspectorsCompanyDao"/>
  1040. </property>
  1041. <property name="ytiotXjTeamPersonnelDao">
  1042. <ref bean="ytiotXjTeamPersonnelDao"/>
  1043. </property>
  1044. <property name="ytiotXjPlanMasterDao">
  1045. <ref bean="ytiotXjPlanMasterDao"/>
  1046. </property>
  1047. <property name="ytiotXjPlanChildDao">
  1048. <ref bean="ytiotXjPlanChildDao"/>
  1049. </property>
  1050. </bean>
  1051. <bean id="ytiotXjSpotOperationRecordService"
  1052. class="cn.com.usky.iot.xjspotoperationrecord.service.YtiotXjSpotOperationRecordServicesImpl">
  1053. <property name="ytiotXjSpotOperationRecordDao">
  1054. <ref bean="ytiotXjSpotOperationRecordDao"/>
  1055. </property>
  1056. <property name="ytiotXjPlanMasterDao">
  1057. <ref bean="ytiotXjPlanMasterDao"/>
  1058. </property>
  1059. <property name="ytiotXjPlanChildDao">
  1060. <ref bean="ytiotXjPlanChildDao"/>
  1061. </property>
  1062. <property name="ytiotXjPlanTeamDao">
  1063. <ref bean="ytiotXjPlanTeamDao"/>
  1064. </property>
  1065. <property name="ytiotXjInspectorsDao">
  1066. <ref bean="ytiotXjInspectorsDao"/>
  1067. </property>
  1068. <property name="ytiotVUserCompanyDao">
  1069. <ref bean="ytiotVUserCompanyDao"/>
  1070. </property>
  1071. <property name="ytiotXjInspectionPointsDao">
  1072. <ref bean="ytiotXjInspectionPointsDao"/>
  1073. </property>
  1074. <property name="ytiotXjOperationRecordPhotosDao">
  1075. <ref bean="ytiotXjOperationRecordPhotosDao"/>
  1076. </property>
  1077. </bean>
  1078. <bean id="ytiotVDeviceStatusDao" class="cn.com.usky.iot.devicestatus.dao.YtiotVDeviceStatusDaoImpl">
  1079. <property name="hibernateTemplate">
  1080. <ref bean="hibernateTemplate"/>
  1081. </property>
  1082. <property name="daoQuery">
  1083. <ref bean="daoQuery"/>
  1084. </property>
  1085. </bean>
  1086. <bean id="ytiotXjEventProcessingDao" class="cn.com.usky.iot.xjeventprocessing.dao.YtiotXjEventProcessingDaoImpl">
  1087. <property name="hibernateTemplate">
  1088. <ref bean="hibernateTemplate"/>
  1089. </property>
  1090. <property name="daoQuery">
  1091. <ref bean="daoQuery"/>
  1092. </property>
  1093. <property name="ytiotTOrderDao">
  1094. <ref bean="ytiotTOrderDao"/>
  1095. </property>
  1096. <property name="ytiotXjToExamine1Dao">
  1097. <ref bean="ytiotXjToExamine1Dao"/>
  1098. </property>
  1099. </bean>
  1100. <bean id="ytiotXjToExamineDao" class="cn.com.usky.iot.xjtoexamine.dao.YtiotXjToExamineDaoImpl">
  1101. <property name="hibernateTemplate">
  1102. <ref bean="hibernateTemplate"/>
  1103. </property>
  1104. <property name="daoQuery">
  1105. <ref bean="daoQuery"/>
  1106. </property>
  1107. <property name="ytiotTOrderDao">
  1108. <ref bean="ytiotTOrderDao"/>
  1109. </property>
  1110. </bean>
  1111. <bean id="ytiotXjToExamine1Dao" class="cn.com.usky.iot.xjtoexamine1.dao.YtiotXjToExamine1DaoImpl">
  1112. <property name="hibernateTemplate">
  1113. <ref bean="hibernateTemplate"/>
  1114. </property>
  1115. <property name="daoQuery">
  1116. <ref bean="daoQuery"/>
  1117. </property>
  1118. <property name="ytiotTOrderDao">
  1119. <ref bean="ytiotTOrderDao"/>
  1120. </property>
  1121. </bean>
  1122. <bean id="ytiotXjEventProcessingService"
  1123. class="cn.com.usky.iot.xjeventprocessing.service.YtiotXjEventProcessingServicesImpl">
  1124. <property name="ytiotXjEventProcessingDao">
  1125. <ref bean="ytiotXjEventProcessingDao"/>
  1126. </property>
  1127. <property name="ytiotXjToExamine1Dao">
  1128. <ref bean="ytiotXjToExamine1Dao"/>
  1129. </property>
  1130. <property name="ytiotXjSpotOperationRecordDao">
  1131. <ref bean="ytiotXjSpotOperationRecordDao"/>
  1132. </property>
  1133. <property name="ytiotXjInspectorsDao">
  1134. <ref bean="ytiotXjInspectorsDao"/>
  1135. </property>
  1136. <property name="ytiotXjOperationRecordPhotosDao">
  1137. <ref bean="ytiotXjOperationRecordPhotosDao"/>
  1138. </property>
  1139. <property name="ytiotXjInspectionPointsDao">
  1140. <ref bean="ytiotXjInspectionPointsDao"/>
  1141. </property>
  1142. </bean>
  1143. <!-- 巡检、维保、维修结束 -->
  1144. <!-- 语音报警配置开始-->
  1145. <bean id="ytiotYyPzbDao" class="cn.com.usky.iot.yypzb.dao.YtiotYyPzbDaoImpl">
  1146. <property name="hibernateTemplate">
  1147. <ref bean="hibernateTemplate"/>
  1148. </property>
  1149. <property name="daoQuery">
  1150. <ref bean="daoQuery"/>
  1151. </property>
  1152. <property name="ytiotTOrderDao">
  1153. <ref bean="ytiotTOrderDao"/>
  1154. </property>
  1155. <property name="ytiotYyCzjlDao">
  1156. <ref bean="ytiotYyCzjlDao"/>
  1157. </property>
  1158. </bean>
  1159. <bean id="ytiotYyPzb2Dao" class="cn.com.usky.iot.yypzb2.dao.YtiotYyPzb2DaoImpl">
  1160. <property name="hibernateTemplate">
  1161. <ref bean="hibernateTemplate"/>
  1162. </property>
  1163. <property name="daoQuery">
  1164. <ref bean="daoQuery"/>
  1165. </property>
  1166. <property name="ytiotTOrderDao">
  1167. <ref bean="ytiotTOrderDao"/>
  1168. </property>
  1169. </bean>
  1170. <bean id="ytiotYySjjlDao" class="cn.com.usky.iot.yysjjl.dao.YtiotYySjjlDaoImpl">
  1171. <property name="hibernateTemplate">
  1172. <ref bean="hibernateTemplate"/>
  1173. </property>
  1174. <property name="daoQuery">
  1175. <ref bean="daoQuery"/>
  1176. </property>
  1177. <property name="ytiotTOrderDao">
  1178. <ref bean="ytiotTOrderDao"/>
  1179. </property>
  1180. </bean>
  1181. <bean id="ytiotYyPzbService" class="cn.com.usky.iot.yypzb.service.YtiotYyPzbServicesImpl">
  1182. <property name="ytiotYyPzbDao">
  1183. <ref bean="ytiotYyPzbDao"/>
  1184. </property>
  1185. <property name="ytiotVUserCompanyDao">
  1186. <ref bean="ytiotVUserCompanyDao"/>
  1187. </property>
  1188. <property name="ytiotYySjjlDao">
  1189. <ref bean="ytiotYySjjlDao"/>
  1190. </property>
  1191. <property name="ytiotYyCzjlDao">
  1192. <ref bean="ytiotYyCzjlDao"/>
  1193. </property>
  1194. <property name="ytiotYyXhconfigDao">
  1195. <ref bean="ytiotYyXhconfigDao"/>
  1196. </property>
  1197. </bean>
  1198. <bean id="ytiotYyCzjlDao" class="cn.com.usky.iot.yyczjl.dao.YtiotYyCzjlDaoImpl">
  1199. <property name="hibernateTemplate">
  1200. <ref bean="hibernateTemplate"/>
  1201. </property>
  1202. <property name="daoQuery">
  1203. <ref bean="daoQuery"/>
  1204. </property>
  1205. <property name="ytiotTOrderDao">
  1206. <ref bean="ytiotTOrderDao"/>
  1207. </property>
  1208. </bean>
  1209. <bean id="ytiotYyXhconfigDao" class="cn.com.usky.iot.yyxhconfig.dao.YtiotYyXhconfigDaoImpl">
  1210. <property name="hibernateTemplate">
  1211. <ref bean="hibernateTemplate"/>
  1212. </property>
  1213. <property name="daoQuery">
  1214. <ref bean="daoQuery"/>
  1215. </property>
  1216. <property name="ytiotTOrderDao">
  1217. <ref bean="ytiotTOrderDao"/>
  1218. </property>
  1219. </bean>
  1220. <bean id="simpleclient" class="cn.com.usky.iot.mqtt.MqttClient" init-method="save">
  1221. <property name="hibernateTemplate">
  1222. <ref bean="hibernateTemplate"/>
  1223. </property>
  1224. </bean>
  1225. <bean id="MqttUtil" class="cn.com.usky.iot.mqtt.MqttUtil">
  1226. <property name="hibernateTemplate">
  1227. <ref bean="hibernateTemplate"/>
  1228. </property>
  1229. </bean>
  1230. <bean id="fireStationService" class="cn.com.usky.iot.service.fireStationService.FireStationServiceImpl">
  1231. <property name="hibernateTemplate">
  1232. <ref bean="hibernateTemplate"/>
  1233. </property>
  1234. </bean>
  1235. <bean id="contractService" class="cn.com.usky.iot.service.contractService.ContractServiceImpl">
  1236. <property name="hibernateTemplate">
  1237. <ref bean="hibernateTemplate"/>
  1238. </property>
  1239. <property name="ytiotVAlarmDao">
  1240. <ref bean="ytiotVAlarmDao"/>
  1241. </property>
  1242. <property name="ytiotVUserphoneDao">
  1243. <ref bean="ytiotVUserphoneDao"/>
  1244. </property>
  1245. <property name="ytiotTAdminDao">
  1246. <ref bean="ytiotTAdminDao"/>
  1247. </property>
  1248. <property name="ytiotVUserCompanyDao">
  1249. <ref bean="ytiotVUserCompanyDao"/>
  1250. </property>
  1251. </bean>
  1252. <bean id="GroupService" class="cn.com.usky.iot.service.groupService.GroupServiceImpl">
  1253. <property name="hibernateTemplate">
  1254. <ref bean="hibernateTemplate"/>
  1255. </property>
  1256. <property name="ytiotVAlarmDao">
  1257. <ref bean="ytiotVAlarmDao"/>
  1258. </property>
  1259. <property name="ytiotVUserphoneDao">
  1260. <ref bean="ytiotVUserphoneDao"/>
  1261. </property>
  1262. <property name="ytiotTAdminDao">
  1263. <ref bean="ytiotTAdminDao"/>
  1264. </property>
  1265. <property name="ytiotVUserCompanyDao">
  1266. <ref bean="ytiotVUserCompanyDao"/>
  1267. </property>
  1268. </bean>
  1269. <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  1270. <property name="defaultEncoding">
  1271. <value>UTF-8</value>
  1272. </property>
  1273. <property name="maxUploadSize">
  1274. <value>32505856</value><!-- 上传文件大小限制为31M,31*1024*1024 -->
  1275. </property>
  1276. <property name="maxInMemorySize">
  1277. <value>4096</value>
  1278. </property>
  1279. </bean>
  1280. <bean id="ytiotTEfAnalysisDao" class="cn.com.usky.iot.EfAnalysis.dao.YtiotTEfAnalysisDaoImpl">
  1281. <property name="hibernateTemplate">
  1282. <ref bean="hibernateTemplate"/>
  1283. </property>
  1284. <property name="daoQuery">
  1285. <ref bean="daoQuery"/>
  1286. </property>
  1287. </bean>
  1288. <bean id="ytiotTEfAnalysisService" class="cn.com.usky.iot.EfAnalysis.service.YtiotTEfAnalysisServicesImpl">
  1289. <property name="ytiotTEfAnalysisDao">
  1290. <ref bean="ytiotTEfAnalysisDao"/>
  1291. </property>
  1292. </bean>
  1293. <bean id="LoginService" class="cn.com.usky.iot.controller.login.LoginServiceImpl">
  1294. <property name="hibernateTemplate">
  1295. <ref bean="hibernateTemplate"/>
  1296. </property>
  1297. <property name="ytiotTAdminDao">
  1298. <ref bean="ytiotTAdminDao"/>
  1299. </property>
  1300. <property name="TokenAuthService">
  1301. <ref bean="TokenAuthService"/>
  1302. </property>
  1303. </bean>
  1304. <bean id="TokenAuthService" class="cn.com.usky.iot.auth.TokenAuthService">
  1305. <property name="hibernateTemplate">
  1306. <ref bean="hibernateTemplate"/>
  1307. </property>
  1308. <property name="LoginService">
  1309. <ref bean="LoginService"/>
  1310. </property>
  1311. </bean>
  1312. <bean id="ytiotTAdminStateEntityDao" class="cn.com.usky.iot.userstatus.dao.YtiotTAdminStateEntityDaoImpl">
  1313. <property name="hibernateTemplate">
  1314. <ref bean="hibernateTemplate"/>
  1315. </property>
  1316. <property name="daoQuery">
  1317. <ref bean="daoQuery"/>
  1318. </property>
  1319. </bean>
  1320. <bean id="ytiotTAdminStateEntityService"
  1321. class="cn.com.usky.iot.userstatus.service.YtiotTAdminStateEntityServicesImpl">
  1322. <property name="ytiotTAdminStateEntityDao">
  1323. <ref bean="ytiotTAdminStateEntityDao"/>
  1324. </property>
  1325. <property name="ytiotVUserCompanyDao">
  1326. <ref bean="ytiotVUserCompanyDao"/>
  1327. </property>
  1328. <property name="ytiotTEfAnalysisDao">
  1329. <ref bean="ytiotTEfAnalysisDao"/>
  1330. </property>
  1331. </bean>
  1332. </beans>