spring-servlet.xml 54 KB

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