spring-servlet.xml 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325
  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" class="cn.com.usky.iot.qrcodeanalysis.service.YtiotTQrcodeAnalysisServicesImpl">
  471. <property name="ytiotTQrcodeAnalysisDao">
  472. <ref bean="ytiotTQrcodeAnalysisDao"/>
  473. </property>
  474. <property name="ytiotVUserCompanyDao">
  475. <ref bean="ytiotVUserCompanyDao"/>
  476. </property>
  477. </bean>
  478. <bean id="ytiotTQrcodeAnalysis2Dao" class="cn.com.usky.iot.qrcodeanalysis2.dao.YtiotTQrcodeAnalysis2DaoImpl">
  479. <property name="hibernateTemplate">
  480. <ref bean="hibernateTemplate"/>
  481. </property>
  482. <property name="daoQuery">
  483. <ref bean="daoQuery"/>
  484. </property>
  485. <property name="ytiotTOrderDao">
  486. <ref bean="ytiotTOrderDao"/>
  487. </property>
  488. </bean>
  489. <bean id="ytiotTQrcodeAnalysis2Service" class="cn.com.usky.iot.qrcodeanalysis2.service.YtiotTQrcodeAnalysis2ServicesImpl">
  490. <property name="ytiotTQrcodeAnalysis2Dao">
  491. <ref bean="ytiotTQrcodeAnalysis2Dao"/>
  492. </property>
  493. <property name="ytiotVUserCompanyDao">
  494. <ref bean="ytiotVUserCompanyDao"/>
  495. </property>
  496. </bean>
  497. <bean id="ytiotTMaintenanceDao" class="cn.com.usky.iot.maintenance.dao.YtiotTMaintenanceDaoImpl">
  498. <property name="hibernateTemplate">
  499. <ref bean="hibernateTemplate"/>
  500. </property>
  501. <property name="daoQuery">
  502. <ref bean="daoQuery"/>
  503. </property>
  504. <property name="ytiotTOrderDao">
  505. <ref bean="ytiotTOrderDao"/>
  506. </property>
  507. </bean>
  508. <bean id="ytiotTMaintenanceService" class="cn.com.usky.iot.maintenance.service.YtiotTMaintenanceServicesImpl">
  509. <property name="ytiotTMaintenanceDao">
  510. <ref bean="ytiotTMaintenanceDao"/>
  511. </property>
  512. <property name="ytiotTQrcodeAnalysis2Dao">
  513. <ref bean="ytiotTQrcodeAnalysis2Dao"/>
  514. </property>
  515. <property name="ytiotTAdminDao">
  516. <ref bean="ytiotTAdminDao"/>
  517. </property>
  518. <property name="ytiotVUserCompanyDao">
  519. <ref bean="ytiotVUserCompanyDao"/>
  520. </property>
  521. </bean>
  522. <bean id="ytiotTRoute2Dao" class="cn.com.usky.iot.route2.dao.YtiotTRoute2DaoImpl">
  523. <property name="hibernateTemplate">
  524. <ref bean="hibernateTemplate"/>
  525. </property>
  526. <property name="daoQuery">
  527. <ref bean="daoQuery"/>
  528. </property>
  529. <property name="ytiotTOrderDao">
  530. <ref bean="ytiotTOrderDao"/>
  531. </property>
  532. </bean>
  533. <bean id="ytiotTRoute2Service" class="cn.com.usky.iot.route2.service.YtiotTRoute2ServicesImpl">
  534. <property name="ytiotTRoute2Dao">
  535. <ref bean="ytiotTRoute2Dao"/>
  536. </property>
  537. <property name="ytiotTAdminDao">
  538. <ref bean="ytiotTAdminDao"/>
  539. </property>
  540. <property name="ytiotVUserCompanyDao">
  541. <ref bean="ytiotVUserCompanyDao"/>
  542. </property>
  543. </bean>
  544. <bean id="ytiotTMaintenancePersonDao" class="cn.com.usky.iot.maintenanceperson.dao.YtiotTMaintenancePersonDaoImpl">
  545. <property name="hibernateTemplate">
  546. <ref bean="hibernateTemplate"/>
  547. </property>
  548. <property name="daoQuery">
  549. <ref bean="daoQuery"/>
  550. </property>
  551. <property name="ytiotTOrderDao">
  552. <ref bean="ytiotTOrderDao"/>
  553. </property>
  554. </bean>
  555. <bean id="ytiotTMaintenancePersonService" class="cn.com.usky.iot.maintenanceperson.service.YtiotTMaintenancePersonServicesImpl">
  556. <property name="ytiotTMaintenancePersonDao">
  557. <ref bean="ytiotTMaintenancePersonDao"/>
  558. </property>
  559. <property name="ytiotVUserCompanyDao">
  560. <ref bean="ytiotVUserCompanyDao"/>
  561. </property>
  562. </bean>
  563. <bean id="ytiotTMaintenancePlanDao" class="cn.com.usky.iot.maintenanceplan.dao.YtiotTMaintenancePlanDaoImpl">
  564. <property name="hibernateTemplate">
  565. <ref bean="hibernateTemplate"/>
  566. </property>
  567. <property name="daoQuery">
  568. <ref bean="daoQuery"/>
  569. </property>
  570. <property name="ytiotTOrderDao">
  571. <ref bean="ytiotTOrderDao"/>
  572. </property>
  573. </bean>
  574. <bean id="ytiotTMaintenancePlanService" class="cn.com.usky.iot.maintenanceplan.service.YtiotTMaintenancePlanServicesImpl">
  575. <property name="ytiotTMaintenancePlanDao">
  576. <ref bean="ytiotTMaintenancePlanDao"/>
  577. </property>
  578. <property name="ytiotTMaintenancePersonDao">
  579. <ref bean="ytiotTMaintenancePersonDao"/>
  580. </property>
  581. <property name="ytiotTRoute2Dao">
  582. <ref bean="ytiotTRoute2Dao"/>
  583. </property>
  584. <property name="ytiotTAdminDao">
  585. <ref bean="ytiotTAdminDao"/>
  586. </property>
  587. <property name="ytiotVUserCompanyDao">
  588. <ref bean="ytiotVUserCompanyDao"/>
  589. </property>
  590. </bean>
  591. <bean id="ytiotTMaintenanceRecordDao" class="cn.com.usky.iot.maintenancerecord.dao.YtiotTMaintenanceRecordDaoImpl">
  592. <property name="hibernateTemplate">
  593. <ref bean="hibernateTemplate"/>
  594. </property>
  595. <property name="daoQuery">
  596. <ref bean="daoQuery"/>
  597. </property>
  598. <property name="ytiotTOrderDao">
  599. <ref bean="ytiotTOrderDao"/>
  600. </property>
  601. </bean>
  602. <bean id="ytiotTMaintenanceRecordService" class="cn.com.usky.iot.maintenancerecord.service.YtiotTMaintenanceRecordServicesImpl">
  603. <property name="ytiotTMaintenanceRecordDao">
  604. <ref bean="ytiotTMaintenanceRecordDao"/>
  605. </property>
  606. <property name="ytiotTMaintenanceDao">
  607. <ref bean="ytiotTMaintenanceDao"/>
  608. </property>
  609. <property name="ytiotTQrcodeAnalysis2Dao">
  610. <ref bean="ytiotTQrcodeAnalysis2Dao"/>
  611. </property>
  612. <property name="ytiotTRoute2Dao">
  613. <ref bean="ytiotTRoute2Dao"/>
  614. </property>
  615. <property name="ytiotTMaintenancePersonDao">
  616. <ref bean="ytiotTMaintenancePersonDao"/>
  617. </property>
  618. <property name="ytiotTAdminDao">
  619. <ref bean="ytiotTAdminDao"/>
  620. </property>
  621. <property name="ytiotVUserCompanyDao">
  622. <ref bean="ytiotVUserCompanyDao"/>
  623. </property>
  624. </bean>
  625. <bean id="ytiotTPatrolPointDao" class="cn.com.usky.iot.patrolpoint.dao.YtiotTPatrolPointDaoImpl">
  626. <property name="hibernateTemplate">
  627. <ref bean="hibernateTemplate"/>
  628. </property>
  629. <property name="daoQuery">
  630. <ref bean="daoQuery"/>
  631. </property>
  632. <property name="ytiotTOrderDao">
  633. <ref bean="ytiotTOrderDao"/>
  634. </property>
  635. </bean>
  636. <bean id="ytiotTPatrolPointService" class="cn.com.usky.iot.patrolpoint.service.YtiotTPatrolPointServicesImpl">
  637. <property name="ytiotTPatrolPointDao">
  638. <ref bean="ytiotTPatrolPointDao"/>
  639. </property>
  640. <property name="ytiotTQrcodeAnalysisDao">
  641. <ref bean="ytiotTQrcodeAnalysisDao"/>
  642. </property>
  643. <property name="ytiotTAdminDao">
  644. <ref bean="ytiotTAdminDao"/>
  645. </property>
  646. <property name="ytiotVUserCompanyDao">
  647. <ref bean="ytiotVUserCompanyDao"/>
  648. </property>
  649. </bean>
  650. <bean id="ytiotTInspectionRecordDao" class="cn.com.usky.iot.inspectionrecord.dao.YtiotTInspectionRecordDaoImpl">
  651. <property name="hibernateTemplate">
  652. <ref bean="hibernateTemplate"/>
  653. </property>
  654. <property name="daoQuery">
  655. <ref bean="daoQuery"/>
  656. </property>
  657. <property name="ytiotTOrderDao">
  658. <ref bean="ytiotTOrderDao"/>
  659. </property>
  660. </bean>
  661. <bean id="ytiotTInspectionRecordService" class="cn.com.usky.iot.inspectionrecord.service.YtiotTInspectionRecordServicesImpl">
  662. <property name="ytiotTInspectionRecordDao">
  663. <ref bean="ytiotTInspectionRecordDao"/>
  664. </property>
  665. <property name="ytiotTPatrolPointDao">
  666. <ref bean="ytiotTPatrolPointDao"/>
  667. </property>
  668. <property name="ytiotTQrcodeAnalysisDao">
  669. <ref bean="ytiotTQrcodeAnalysisDao"/>
  670. </property>
  671. <property name="ytiotTRouteDao">
  672. <ref bean="ytiotTRouteDao"/>
  673. </property>
  674. <property name="ytiotTInspectorsDao">
  675. <ref bean="ytiotTInspectorsDao"/>
  676. </property>
  677. <property name="ytiotTAdminDao">
  678. <ref bean="ytiotTAdminDao"/>
  679. </property>
  680. <property name="ytiotVUserCompanyDao">
  681. <ref bean="ytiotVUserCompanyDao"/>
  682. </property>
  683. </bean>
  684. <bean id="ytiotQueryService" class="cn.com.usky.iot.query.service.YtiotQueryServiceImpl">
  685. <property name="ytiotVAlarmDao">
  686. <ref bean="ytiotVAlarmDao"/>
  687. </property>
  688. <property name="ytiotVDataDao">
  689. <ref bean="ytiotVDataDao"/>
  690. </property>
  691. <property name="ytiotVUserphoneDao">
  692. <ref bean="ytiotVUserphoneDao"/>
  693. </property>
  694. <property name="ytiotTAdminDao">
  695. <ref bean="ytiotTAdminDao"/>
  696. </property>
  697. <property name="ytiotVUserCompanyDao">
  698. <ref bean="ytiotVUserCompanyDao"/>
  699. </property>
  700. <property name="ytiotQueryDao">
  701. <ref bean="ytiotQueryDao"/>
  702. </property>
  703. </bean>
  704. <bean id="ytiotQueryDao" class="cn.com.usky.iot.query.dao.YtiotQueryDaoImpl">
  705. <property name="daoQuery">
  706. <ref bean="daoQuery" />
  707. </property>
  708. </bean>
  709. <bean id="ytiotVVideoAlarmService" class="cn.com.usky.iot.video.service.YtiotVVideoAlarmServiceImpl">
  710. <property name="ytiotVAlarmDao">
  711. <ref bean="ytiotVAlarmDao"/>
  712. </property>
  713. </bean>
  714. <bean id="ytiotTcAlarmPackagesDao" class="cn.com.usky.iot.alarmpackages.dao.YtiotTcAlarmPackagesDaoImpl">
  715. <property name="hibernateTemplate">
  716. <ref bean="hibernateTemplate"/>
  717. </property>
  718. <property name="daoQuery">
  719. <ref bean="daoQuery"/>
  720. </property>
  721. <property name="ytiotTOrderDao">
  722. <ref bean="ytiotTOrderDao"/>
  723. </property>
  724. </bean>
  725. <bean id="ytiotTcAlarmPackagesZbDao" class="cn.com.usky.iot.alarmpackageszb.dao.YtiotTcAlarmPackagesZbDaoImpl">
  726. <property name="hibernateTemplate">
  727. <ref bean="hibernateTemplate"/>
  728. </property>
  729. <property name="daoQuery">
  730. <ref bean="daoQuery"/>
  731. </property>
  732. <property name="ytiotTOrderDao">
  733. <ref bean="ytiotTOrderDao"/>
  734. </property>
  735. </bean>
  736. <bean id="ytiotTOutcryPackageService" class="cn.com.usky.iot.outcrypackage.service.YtiotTOutcryPackageServicesImpl">
  737. <property name="ytiotTcAlarmPackagesDao">
  738. <ref bean="ytiotTcAlarmPackagesDao"/>
  739. </property>
  740. <property name="ytiotTcAlarmPackagesZbDao">
  741. <ref bean="ytiotTcAlarmPackagesZbDao"/>
  742. </property>
  743. <property name="ytiotVCompanyDao">
  744. <ref bean="ytiotVCompanyDao"/>
  745. </property>
  746. </bean>
  747. <!-- 东方明珠-杨浦项目首页 -->
  748. <bean id="ytiotVObjectDao" class="cn.com.usky.iot.object.dao.YtiotVObjectDaoImpl">
  749. <property name="daoQuery">
  750. <ref bean="daoQuery"/>
  751. </property>
  752. </bean>
  753. <bean id="ytiotFrontpageQueryService" class="cn.com.usky.iot.frontpage.service.YtiotFrontpageQueryServiceImpl">
  754. <property name="ytiotTAdminDao">
  755. <ref bean="ytiotTAdminDao"/>
  756. </property>
  757. <property name="ytiotVUserCompanyDao">
  758. <ref bean="ytiotVUserCompanyDao"/>
  759. </property>
  760. <property name="ytiotVCompanyDao">
  761. <ref bean="ytiotVCompanyDao"/>
  762. </property>
  763. <property name="ytiotVAlarmDao">
  764. <ref bean="ytiotVAlarmDao"/>
  765. </property>
  766. <property name="ytiotVObjectDao">
  767. <ref bean="ytiotVObjectDao"/>
  768. </property>
  769. <property name="ytiotVUserphoneDao">
  770. <ref bean="ytiotVUserphoneDao"/>
  771. </property>
  772. </bean>
  773. <!-- 东方明珠-杨浦项目首页结束 -->
  774. <!-- 巡检、维保开始 -->
  775. <bean id="ytiotXjInspectionPointsDao" class="cn.com.usky.iot.xjinspectionpoints.dao.YtiotXjInspectionPointsDaoImpl">
  776. <property name="hibernateTemplate">
  777. <ref bean="hibernateTemplate"/>
  778. </property>
  779. <property name="daoQuery">
  780. <ref bean="daoQuery"/>
  781. </property>
  782. <property name="ytiotTOrderDao">
  783. <ref bean="ytiotTOrderDao"/>
  784. </property>
  785. <property name="ytiotXjSpotEquipmentDao">
  786. <ref bean="ytiotXjSpotEquipmentDao"/>
  787. </property>
  788. </bean>
  789. <bean id="ytiotXjInspectorsDao" class="cn.com.usky.iot.xjinspectors.dao.YtiotXjInspectorsDaoImpl">
  790. <property name="hibernateTemplate">
  791. <ref bean="hibernateTemplate"/>
  792. </property>
  793. <property name="daoQuery">
  794. <ref bean="daoQuery"/>
  795. </property>
  796. <property name="ytiotTOrderDao">
  797. <ref bean="ytiotTOrderDao"/>
  798. </property>
  799. <property name="ytiotXjInspectorsCompanyDao">
  800. <ref bean="ytiotXjInspectorsCompanyDao"/>
  801. </property>
  802. <property name="ytiotVUserCompanyDao">
  803. <ref bean="ytiotVUserCompanyDao"/>
  804. </property>
  805. </bean>
  806. <bean id="ytiotXjInspectorsCompanyDao" class="cn.com.usky.iot.xjinspectorscompany.dao.YtiotXjInspectorsCompanyDaoImpl">
  807. <property name="hibernateTemplate">
  808. <ref bean="hibernateTemplate"/>
  809. </property>
  810. <property name="daoQuery">
  811. <ref bean="daoQuery"/>
  812. </property>
  813. <property name="ytiotTOrderDao">
  814. <ref bean="ytiotTOrderDao"/>
  815. </property>
  816. </bean>
  817. <bean id="ytiotXjOperationRecordPhotosDao" class="cn.com.usky.iot.xjoperationrecordphotos.dao.YtiotXjOperationRecordPhotosDaoImpl">
  818. <property name="hibernateTemplate">
  819. <ref bean="hibernateTemplate"/>
  820. </property>
  821. <property name="daoQuery">
  822. <ref bean="daoQuery"/>
  823. </property>
  824. <property name="ytiotTOrderDao">
  825. <ref bean="ytiotTOrderDao"/>
  826. </property>
  827. </bean>
  828. <bean id="ytiotXjPlanChildDao" class="cn.com.usky.iot.xjplanchild.dao.YtiotXjPlanChildDaoImpl">
  829. <property name="hibernateTemplate">
  830. <ref bean="hibernateTemplate"/>
  831. </property>
  832. <property name="daoQuery">
  833. <ref bean="daoQuery"/>
  834. </property>
  835. <property name="ytiotTOrderDao">
  836. <ref bean="ytiotTOrderDao"/>
  837. </property>
  838. <property name="ytiotXjSpotOperationRecordDao">
  839. <ref bean="ytiotXjSpotOperationRecordDao"/>
  840. </property>
  841. </bean>
  842. <bean id="ytiotXjPlanMasterDao" class="cn.com.usky.iot.xjplanmaster.dao.YtiotXjPlanMasterDaoImpl">
  843. <property name="hibernateTemplate">
  844. <ref bean="hibernateTemplate"/>
  845. </property>
  846. <property name="daoQuery">
  847. <ref bean="daoQuery"/>
  848. </property>
  849. <property name="ytiotTOrderDao">
  850. <ref bean="ytiotTOrderDao"/>
  851. </property>
  852. <property name="ytiotXjPlanChildDao">
  853. <ref bean="ytiotXjPlanChildDao"/>
  854. </property>
  855. <property name="ytiotXjPlanSpotDao">
  856. <ref bean="ytiotXjPlanSpotDao"/>
  857. </property>
  858. </bean>
  859. <bean id="ytiotXjPlanSpotDao" class="cn.com.usky.iot.xjplanspot.dao.YtiotXjPlanSpotDaoImpl">
  860. <property name="hibernateTemplate">
  861. <ref bean="hibernateTemplate"/>
  862. </property>
  863. <property name="daoQuery">
  864. <ref bean="daoQuery"/>
  865. </property>
  866. <property name="ytiotTOrderDao">
  867. <ref bean="ytiotTOrderDao"/>
  868. </property>
  869. </bean>
  870. <bean id="ytiotXjPlanTeamDao" class="cn.com.usky.iot.xjplanteam.dao.YtiotXjPlanTeamDaoImpl">
  871. <property name="hibernateTemplate">
  872. <ref bean="hibernateTemplate"/>
  873. </property>
  874. <property name="daoQuery">
  875. <ref bean="daoQuery"/>
  876. </property>
  877. <property name="ytiotTOrderDao">
  878. <ref bean="ytiotTOrderDao"/>
  879. </property>
  880. </bean>
  881. <bean id="ytiotXjSpotEquipmentDao" class="cn.com.usky.iot.xjspotequipment.dao.YtiotXjSpotEquipmentDaoImpl">
  882. <property name="hibernateTemplate">
  883. <ref bean="hibernateTemplate"/>
  884. </property>
  885. <property name="daoQuery">
  886. <ref bean="daoQuery"/>
  887. </property>
  888. <property name="ytiotTOrderDao">
  889. <ref bean="ytiotTOrderDao"/>
  890. </property>
  891. </bean>
  892. <bean id="ytiotXjSpotOperationRecordDao" class="cn.com.usky.iot.xjspotoperationrecord.dao.YtiotXjSpotOperationRecordDaoImpl">
  893. <property name="hibernateTemplate">
  894. <ref bean="hibernateTemplate"/>
  895. </property>
  896. <property name="daoQuery">
  897. <ref bean="daoQuery"/>
  898. </property>
  899. <property name="ytiotTOrderDao">
  900. <ref bean="ytiotTOrderDao"/>
  901. </property>
  902. </bean>
  903. <bean id="ytiotXjTeamPersonnelDao" class="cn.com.usky.iot.xjteampersonnel.dao.YtiotXjTeamPersonnelDaoImpl">
  904. <property name="hibernateTemplate">
  905. <ref bean="hibernateTemplate"/>
  906. </property>
  907. <property name="daoQuery">
  908. <ref bean="daoQuery"/>
  909. </property>
  910. <property name="ytiotTOrderDao">
  911. <ref bean="ytiotTOrderDao"/>
  912. </property>
  913. </bean>
  914. <bean id="ytiotXjInspectorsService" class="cn.com.usky.iot.xjinspectors.service.YtiotXjInspectorsServicesImpl">
  915. <property name="ytiotXjInspectorsCompanyDao">
  916. <ref bean="ytiotXjInspectorsCompanyDao"/>
  917. </property>
  918. <property name="ytiotVUserCompanyDao">
  919. <ref bean="ytiotVUserCompanyDao"/>
  920. </property>
  921. <property name="ytiotXjInspectorsDao">
  922. <ref bean="ytiotXjInspectorsDao"/>
  923. </property>
  924. <property name="ytiotXjTeamPersonnelDao">
  925. <ref bean="ytiotXjTeamPersonnelDao"/>
  926. </property>
  927. <property name="ytiotXjPlanTeamDao">
  928. <ref bean="ytiotXjPlanTeamDao"/>
  929. </property>
  930. </bean>
  931. <bean id="ytiotXjInspectionPointsService" class="cn.com.usky.iot.xjinspectionpoints.service.YtiotXjInspectionPointsServicesImpl">
  932. <property name="ytiotXjInspectionPointsDao">
  933. <ref bean="ytiotXjInspectionPointsDao"/>
  934. </property>
  935. <property name="ytiotTAdminDao">
  936. <ref bean="ytiotTAdminDao"/>
  937. </property>
  938. <property name="ytiotVUserCompanyDao">
  939. <ref bean="ytiotVUserCompanyDao"/>
  940. </property>
  941. <property name="ytiotXjSpotEquipmentDao">
  942. <ref bean="ytiotXjSpotEquipmentDao"/>
  943. </property>
  944. <property name="ytiotVCompanyDao">
  945. <ref bean="ytiotVCompanyDao"/>
  946. </property>
  947. <property name="ytiotXjSpotOperationRecordDao">
  948. <ref bean="ytiotXjSpotOperationRecordDao"/>
  949. </property>
  950. <property name="ytiotXjPlanSpotDao">
  951. <ref bean="ytiotXjPlanSpotDao"/>
  952. </property>
  953. <property name="ytiotXjPlanTeamDao">
  954. <ref bean="ytiotXjPlanTeamDao"/>
  955. </property>
  956. <property name="ytiotVDeviceStatusDao">
  957. <ref bean="ytiotVDeviceStatusDao"/>
  958. </property>
  959. <property name="ytiotXjPlanMasterDao">
  960. <ref bean="ytiotXjPlanMasterDao"/>
  961. </property>
  962. </bean>
  963. <bean id="ytiotXjPlanMasterService" class="cn.com.usky.iot.xjplanmaster.service.YtiotXjPlanMasterServicesImpl">
  964. <property name="ytiotXjPlanMasterDao">
  965. <ref bean="ytiotXjPlanMasterDao"/>
  966. </property>
  967. <property name="ytiotVUserCompanyDao">
  968. <ref bean="ytiotVUserCompanyDao"/>
  969. </property>
  970. <property name="ytiotTAdminDao">
  971. <ref bean="ytiotTAdminDao"/>
  972. </property>
  973. <property name="ytiotXjInspectionPointsDao">
  974. <ref bean="ytiotXjInspectionPointsDao"/>
  975. </property>
  976. <property name="ytiotXjInspectorsDao">
  977. <ref bean="ytiotXjInspectorsDao"/>
  978. </property>
  979. <property name="ytiotXjPlanTeamDao">
  980. <ref bean="ytiotXjPlanTeamDao"/>
  981. </property>
  982. <property name="ytiotXjPlanSpotDao">
  983. <ref bean="ytiotXjPlanSpotDao"/>
  984. </property>
  985. <property name="ytiotXjPlanChildDao">
  986. <ref bean="ytiotXjPlanChildDao"/>
  987. </property>
  988. <property name="ytiotXjSpotOperationRecordDao">
  989. <ref bean="ytiotXjSpotOperationRecordDao"/>
  990. </property>
  991. </bean>
  992. <bean id="ytiotXjPlanChildService" class="cn.com.usky.iot.xjplanchild.service.YtiotXjPlanChildServicesImpl">
  993. <property name="ytiotXjPlanChildDao">
  994. <ref bean="ytiotXjPlanChildDao"/>
  995. </property>
  996. <property name="ytiotXjPlanMasterDao">
  997. <ref bean="ytiotXjPlanMasterDao"/>
  998. </property>
  999. <property name="ytiotVUserCompanyDao">
  1000. <ref bean="ytiotVUserCompanyDao"/>
  1001. </property>
  1002. <property name="ytiotTAdminDao">
  1003. <ref bean="ytiotTAdminDao"/>
  1004. </property>
  1005. <property name="ytiotXjInspectionPointsDao">
  1006. <ref bean="ytiotXjInspectionPointsDao"/>
  1007. </property>
  1008. <property name="ytiotXjInspectorsDao">
  1009. <ref bean="ytiotXjInspectorsDao"/>
  1010. </property>
  1011. <property name="ytiotXjPlanTeamDao">
  1012. <ref bean="ytiotXjPlanTeamDao"/>
  1013. </property>
  1014. <property name="ytiotXjPlanSpotDao">
  1015. <ref bean="ytiotXjPlanSpotDao"/>
  1016. </property>
  1017. </bean>
  1018. <bean id="ytiotXjPlanTeamService" class="cn.com.usky.iot.xjplanteam.service.YtiotXjPlanTeamServicesImpl">
  1019. <property name="ytiotXjPlanTeamDao">
  1020. <ref bean="ytiotXjPlanTeamDao"/>
  1021. </property>
  1022. <property name="ytiotXjInspectorsDao">
  1023. <ref bean="ytiotXjInspectorsDao"/>
  1024. </property>
  1025. <property name="ytiotVUserCompanyDao">
  1026. <ref bean="ytiotVUserCompanyDao"/>
  1027. </property>
  1028. <property name="ytiotXjInspectorsCompanyDao">
  1029. <ref bean="ytiotXjInspectorsCompanyDao"/>
  1030. </property>
  1031. <property name="ytiotXjTeamPersonnelDao">
  1032. <ref bean="ytiotXjTeamPersonnelDao"/>
  1033. </property>
  1034. <property name="ytiotXjPlanMasterDao">
  1035. <ref bean="ytiotXjPlanMasterDao"/>
  1036. </property>
  1037. <property name="ytiotXjPlanChildDao">
  1038. <ref bean="ytiotXjPlanChildDao"/>
  1039. </property>
  1040. </bean>
  1041. <bean id="ytiotXjSpotOperationRecordService" class="cn.com.usky.iot.xjspotoperationrecord.service.YtiotXjSpotOperationRecordServicesImpl">
  1042. <property name="ytiotXjSpotOperationRecordDao">
  1043. <ref bean="ytiotXjSpotOperationRecordDao"/>
  1044. </property>
  1045. <property name="ytiotXjPlanMasterDao">
  1046. <ref bean="ytiotXjPlanMasterDao"/>
  1047. </property>
  1048. <property name="ytiotXjPlanChildDao">
  1049. <ref bean="ytiotXjPlanChildDao"/>
  1050. </property>
  1051. <property name="ytiotXjPlanTeamDao">
  1052. <ref bean="ytiotXjPlanTeamDao"/>
  1053. </property>
  1054. <property name="ytiotXjInspectorsDao">
  1055. <ref bean="ytiotXjInspectorsDao"/>
  1056. </property>
  1057. <property name="ytiotVUserCompanyDao">
  1058. <ref bean="ytiotVUserCompanyDao"/>
  1059. </property>
  1060. <property name="ytiotXjInspectionPointsDao">
  1061. <ref bean="ytiotXjInspectionPointsDao"/>
  1062. </property>
  1063. <property name="ytiotXjOperationRecordPhotosDao">
  1064. <ref bean="ytiotXjOperationRecordPhotosDao"/>
  1065. </property>
  1066. </bean>
  1067. <bean id="ytiotVDeviceStatusDao" class="cn.com.usky.iot.devicestatus.dao.YtiotVDeviceStatusDaoImpl">
  1068. <property name="hibernateTemplate">
  1069. <ref bean="hibernateTemplate"/>
  1070. </property>
  1071. <property name="daoQuery">
  1072. <ref bean="daoQuery"/>
  1073. </property>
  1074. </bean>
  1075. <bean id="ytiotXjEventProcessingDao" class="cn.com.usky.iot.xjeventprocessing.dao.YtiotXjEventProcessingDaoImpl">
  1076. <property name="hibernateTemplate">
  1077. <ref bean="hibernateTemplate"/>
  1078. </property>
  1079. <property name="daoQuery">
  1080. <ref bean="daoQuery"/>
  1081. </property>
  1082. <property name="ytiotTOrderDao">
  1083. <ref bean="ytiotTOrderDao"/>
  1084. </property>
  1085. <property name="ytiotXjToExamine1Dao">
  1086. <ref bean="ytiotXjToExamine1Dao"/>
  1087. </property>
  1088. </bean>
  1089. <bean id="ytiotXjToExamineDao" class="cn.com.usky.iot.xjtoexamine.dao.YtiotXjToExamineDaoImpl">
  1090. <property name="hibernateTemplate">
  1091. <ref bean="hibernateTemplate"/>
  1092. </property>
  1093. <property name="daoQuery">
  1094. <ref bean="daoQuery"/>
  1095. </property>
  1096. <property name="ytiotTOrderDao">
  1097. <ref bean="ytiotTOrderDao"/>
  1098. </property>
  1099. </bean>
  1100. <bean id="ytiotXjToExamine1Dao" class="cn.com.usky.iot.xjtoexamine1.dao.YtiotXjToExamine1DaoImpl">
  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="ytiotXjEventProcessingService" class="cn.com.usky.iot.xjeventprocessing.service.YtiotXjEventProcessingServicesImpl">
  1112. <property name="ytiotXjEventProcessingDao">
  1113. <ref bean="ytiotXjEventProcessingDao"/>
  1114. </property>
  1115. <property name="ytiotXjToExamine1Dao">
  1116. <ref bean="ytiotXjToExamine1Dao"/>
  1117. </property>
  1118. <property name="ytiotXjSpotOperationRecordDao">
  1119. <ref bean="ytiotXjSpotOperationRecordDao"/>
  1120. </property>
  1121. <property name="ytiotXjInspectorsDao">
  1122. <ref bean="ytiotXjInspectorsDao"/>
  1123. </property>
  1124. <property name="ytiotXjOperationRecordPhotosDao">
  1125. <ref bean="ytiotXjOperationRecordPhotosDao"/>
  1126. </property>
  1127. <property name="ytiotXjInspectionPointsDao">
  1128. <ref bean="ytiotXjInspectionPointsDao"/>
  1129. </property>
  1130. </bean>
  1131. <!-- 巡检、维保、维修结束 -->
  1132. <!-- 语音报警配置开始-->
  1133. <bean id="ytiotYyPzbDao" class="cn.com.usky.iot.yypzb.dao.YtiotYyPzbDaoImpl">
  1134. <property name="hibernateTemplate">
  1135. <ref bean="hibernateTemplate"/>
  1136. </property>
  1137. <property name="daoQuery">
  1138. <ref bean="daoQuery"/>
  1139. </property>
  1140. <property name="ytiotTOrderDao">
  1141. <ref bean="ytiotTOrderDao"/>
  1142. </property>
  1143. <property name="ytiotYyCzjlDao">
  1144. <ref bean="ytiotYyCzjlDao"/>
  1145. </property>
  1146. </bean>
  1147. <bean id="ytiotYyPzb2Dao" class="cn.com.usky.iot.yypzb2.dao.YtiotYyPzb2DaoImpl">
  1148. <property name="hibernateTemplate">
  1149. <ref bean="hibernateTemplate"/>
  1150. </property>
  1151. <property name="daoQuery">
  1152. <ref bean="daoQuery"/>
  1153. </property>
  1154. <property name="ytiotTOrderDao">
  1155. <ref bean="ytiotTOrderDao"/>
  1156. </property>
  1157. </bean>
  1158. <bean id="ytiotYySjjlDao" class="cn.com.usky.iot.yysjjl.dao.YtiotYySjjlDaoImpl">
  1159. <property name="hibernateTemplate">
  1160. <ref bean="hibernateTemplate"/>
  1161. </property>
  1162. <property name="daoQuery">
  1163. <ref bean="daoQuery"/>
  1164. </property>
  1165. <property name="ytiotTOrderDao">
  1166. <ref bean="ytiotTOrderDao"/>
  1167. </property>
  1168. </bean>
  1169. <bean id="ytiotYyPzbService" class="cn.com.usky.iot.yypzb.service.YtiotYyPzbServicesImpl">
  1170. <property name="ytiotYyPzbDao">
  1171. <ref bean="ytiotYyPzbDao"/>
  1172. </property>
  1173. <property name="ytiotVUserCompanyDao">
  1174. <ref bean="ytiotVUserCompanyDao"/>
  1175. </property>
  1176. <property name="ytiotYySjjlDao">
  1177. <ref bean="ytiotYySjjlDao"/>
  1178. </property>
  1179. <property name="ytiotYyCzjlDao">
  1180. <ref bean="ytiotYyCzjlDao"/>
  1181. </property>
  1182. <property name="ytiotYyXhconfigDao">
  1183. <ref bean="ytiotYyXhconfigDao"/>
  1184. </property>
  1185. </bean>
  1186. <bean id="ytiotYyCzjlDao" class="cn.com.usky.iot.yyczjl.dao.YtiotYyCzjlDaoImpl">
  1187. <property name="hibernateTemplate">
  1188. <ref bean="hibernateTemplate"/>
  1189. </property>
  1190. <property name="daoQuery">
  1191. <ref bean="daoQuery"/>
  1192. </property>
  1193. <property name="ytiotTOrderDao">
  1194. <ref bean="ytiotTOrderDao"/>
  1195. </property>
  1196. </bean>
  1197. <bean id="ytiotYyXhconfigDao" class="cn.com.usky.iot.yyxhconfig.dao.YtiotYyXhconfigDaoImpl">
  1198. <property name="hibernateTemplate">
  1199. <ref bean="hibernateTemplate"/>
  1200. </property>
  1201. <property name="daoQuery">
  1202. <ref bean="daoQuery"/>
  1203. </property>
  1204. <property name="ytiotTOrderDao">
  1205. <ref bean="ytiotTOrderDao"/>
  1206. </property>
  1207. </bean>
  1208. <bean id="simpleclient" class="cn.com.usky.iot.mqtt.MqttClient" init-method="save">
  1209. <property name="hibernateTemplate">
  1210. <ref bean="hibernateTemplate"/>
  1211. </property>
  1212. </bean>
  1213. <bean id="MqttUtil" class="cn.com.usky.iot.mqtt.MqttUtil">
  1214. <property name="hibernateTemplate">
  1215. <ref bean="hibernateTemplate"/>
  1216. </property>
  1217. </bean>
  1218. <bean id="fireStationService" class="cn.com.usky.iot.service.fireStationService.FireStationServiceImpl">
  1219. <property name="hibernateTemplate">
  1220. <ref bean="hibernateTemplate"/>
  1221. </property>
  1222. </bean>
  1223. <bean id="contractService" class="cn.com.usky.iot.service.contractService.ContractServiceImpl">
  1224. <property name="hibernateTemplate">
  1225. <ref bean="hibernateTemplate"/>
  1226. </property>
  1227. <property name="ytiotVAlarmDao">
  1228. <ref bean="ytiotVAlarmDao"/>
  1229. </property>
  1230. <property name="ytiotVUserphoneDao">
  1231. <ref bean="ytiotVUserphoneDao"/>
  1232. </property>
  1233. <property name="ytiotTAdminDao">
  1234. <ref bean="ytiotTAdminDao"/>
  1235. </property>
  1236. <property name="ytiotVUserCompanyDao">
  1237. <ref bean="ytiotVUserCompanyDao"/>
  1238. </property>
  1239. </bean>
  1240. <bean id="GroupService" class="cn.com.usky.iot.service.groupService.GroupServiceImpl">
  1241. <property name="hibernateTemplate">
  1242. <ref bean="hibernateTemplate"/>
  1243. </property>
  1244. <property name="ytiotVAlarmDao">
  1245. <ref bean="ytiotVAlarmDao"/>
  1246. </property>
  1247. <property name="ytiotVUserphoneDao">
  1248. <ref bean="ytiotVUserphoneDao"/>
  1249. </property>
  1250. <property name="ytiotTAdminDao">
  1251. <ref bean="ytiotTAdminDao"/>
  1252. </property>
  1253. <property name="ytiotVUserCompanyDao">
  1254. <ref bean="ytiotVUserCompanyDao"/>
  1255. </property>
  1256. </bean>
  1257. <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  1258. <property name="defaultEncoding">
  1259. <value>UTF-8</value>
  1260. </property>
  1261. <property name="maxUploadSize">
  1262. <value>32505856</value><!-- 上传文件大小限制为31M,31*1024*1024 -->
  1263. </property>
  1264. <property name="maxInMemorySize">
  1265. <value>4096</value>
  1266. </property>
  1267. </bean>
  1268. <bean id="ytiotTEfAnalysisDao" class="cn.com.usky.iot.EfAnalysis.dao.YtiotTEfAnalysisDaoImpl">
  1269. <property name="hibernateTemplate">
  1270. <ref bean="hibernateTemplate"/>
  1271. </property>
  1272. <property name="daoQuery">
  1273. <ref bean="daoQuery"/>
  1274. </property>
  1275. </bean>
  1276. <bean id="ytiotTEfAnalysisService" class="cn.com.usky.iot.EfAnalysis.service.YtiotTEfAnalysisServicesImpl">
  1277. <property name="ytiotTEfAnalysisDao">
  1278. <ref bean="ytiotTEfAnalysisDao"/>
  1279. </property>
  1280. </bean>
  1281. <bean id="ytiotTAdminStateEntityDao" class="cn.com.usky.iot.userstatus.dao.YtiotTAdminStateEntityDaoImpl">
  1282. <property name="hibernateTemplate">
  1283. <ref bean="hibernateTemplate"/>
  1284. </property>
  1285. <property name="daoQuery">
  1286. <ref bean="daoQuery"/>
  1287. </property>
  1288. </bean>
  1289. <bean id="ytiotTAdminStateEntityService" class="cn.com.usky.iot.userstatus.service.YtiotTAdminStateEntityServicesImpl">
  1290. <property name="ytiotTAdminStateEntityDao">
  1291. <ref bean="ytiotTAdminStateEntityDao"/>
  1292. </property>
  1293. <property name="ytiotVUserCompanyDao">
  1294. <ref bean="ytiotVUserCompanyDao"/>
  1295. </property>
  1296. <property name="ytiotTEfAnalysisDao">
  1297. <ref bean="ytiotTEfAnalysisDao"/>
  1298. </property>
  1299. </bean>
  1300. </beans>