spring-servlet.xml 54 KB

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