spring-servlet.xml 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  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. </beans>