1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360 |
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:task="http://www.springframework.org/schema/task"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:mvc="http://www.springframework.org/schema/mvc"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd
- http://www.springframework.org/schema/task
- http://www.springframework.org/schema/task/spring-task-3.0.xsd
- http://www.springframework.org/schema/mvc
- http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
- <!-- 默认的注解映射的支持 -->
- <mvc:annotation-driven/>
- <!--启用自动扫描 -->
- <context:component-scan base-package="cn.com.usky.iot.controller"/>
- <!-- 后台任务 -->
- <context:component-scan base-package="cn.com.usky.iot.task"/>
- <task:annotation-driven scheduler="qbScheduler" mode="proxy"/>
- <task:scheduler id="qbScheduler" pool-size="10"/>
- <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
- <property name="prefix" value="/opt/"/>
- <property name="suffix" value=".jsp"/>
- </bean>
- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <property name="configLocation" value="WEB-INF/hibernate.cfg.xml"/>
- </bean>
- <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
- <property name="sessionFactory">
- <ref bean="sessionFactory"/>
- </property>
- </bean>
- <bean id="daoQuery" class="cn.com.usky.utils.DaoQuery">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- </bean>
- <bean id="ytiotTOrderDao" class="cn.com.usky.iot.order.dao.YtiotTOrderDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTAdminVerDao" class="cn.com.usky.iot.admin.dao.YtiotTAdminVerDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTAdminDao" class="cn.com.usky.iot.admin.dao.YtiotTAdminDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTAdminVerDao">
- <ref bean="ytiotTAdminVerDao"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTAdminService" class="cn.com.usky.iot.admin.service.YtiotTAdminServicesImpl">
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotTAdminVerDao">
- <ref bean="ytiotTAdminVerDao"/>
- </property>
- </bean>
- <bean id="ytiotTCompanyVerDao" class="cn.com.usky.iot.company.dao.YtiotTCompanyVerDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTCompanyDao" class="cn.com.usky.iot.company.dao.YtiotTCompanyDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTCompanyVerDao">
- <ref bean="ytiotTCompanyVerDao"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTCompanyService" class="cn.com.usky.iot.company.service.YtiotTCompanyServicesImpl">
- <property name="ytiotTCompanyDao">
- <ref bean="ytiotTCompanyDao"/>
- </property>
- <property name="ytiotTCompanyVerDao">
- <ref bean="ytiotTCompanyVerDao"/>
- </property>
- </bean>
- <bean id="ytiotTAreaverDao" class="cn.com.usky.iot.area.dao.YtiotTAreaverDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTAreaDao" class="cn.com.usky.iot.area.dao.YtiotTAreaDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTAreaverDao">
- <ref bean="ytiotTAreaverDao"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTAreaService" class="cn.com.usky.iot.area.service.YtiotTAreaServicesImpl">
- <property name="ytiotTAreaDao">
- <ref bean="ytiotTAreaDao"/>
- </property>
- <property name="ytiotTAreaverDao">
- <ref bean="ytiotTAreaverDao"/>
- </property>
- </bean>
- <bean id="ytiotTBuildingverDao" class="cn.com.usky.iot.building.dao.YtiotTBuildingverDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTBuildingDao" class="cn.com.usky.iot.building.dao.YtiotTBuildingDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTBuildingverDao">
- <ref bean="ytiotTBuildingverDao"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTBuildingService" class="cn.com.usky.iot.building.service.YtiotTBuildingServicesImpl">
- <property name="ytiotTAreaDao">
- <ref bean="ytiotTAreaDao"/>
- </property>
- <property name="ytiotTBuildingDao">
- <ref bean="ytiotTBuildingDao"/>
- </property>
- <property name="ytiotTBuildingverDao">
- <ref bean="ytiotTBuildingverDao"/>
- </property>
- </bean>
- <bean id="ytiotTPointVerDao" class="cn.com.usky.iot.point.dao.YtiotTPointVerDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTPointDao" class="cn.com.usky.iot.point.dao.YtiotTPointDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTPointVerDao">
- <ref bean="ytiotTPointVerDao"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTPointService" class="cn.com.usky.iot.point.service.YtiotTPointServicesImpl">
- <property name="ytiotTPointDao">
- <ref bean="ytiotTPointDao"/>
- </property>
- <property name="ytiotTPointVerDao">
- <ref bean="ytiotTPointVerDao"/>
- </property>
- </bean>
- <bean id="ytiotTUnitVerDao" class="cn.com.usky.iot.unit.dao.YtiotTUnitVerDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotVUserCompanyDao" class="cn.com.usky.iot.admin.dao.YtiotVUserCompanyDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTUnitDao" class="cn.com.usky.iot.unit.dao.YtiotTUnitDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTUnitVerDao">
- <ref bean="ytiotTUnitVerDao"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTUnitService" class="cn.com.usky.iot.unit.service.YtiotTUnitServicesImpl">
- <property name="ytiotTUnitDao">
- <ref bean="ytiotTUnitDao"/>
- </property>
- <property name="ytiotTUnitVerDao">
- <ref bean="ytiotTUnitVerDao"/>
- </property>
- </bean>
- <bean id="ytiotVCompanyDao" class="cn.com.usky.iot.company.dao.YtiotVCompanyDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotVCompanyService" class="cn.com.usky.iot.company.service.YtiotVCompanyServiceImpl">
- <property name="ytiotVCompanyDao">
- <ref bean="ytiotVCompanyDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- <property name="ytiotVDataDao">
- <ref bean="ytiotVDataDao"/>
- </property>
- </bean>
- <bean id="ytiotVUserphoneDao" class="cn.com.usky.iot.admin.dao.YtiotVUserphoneDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotVAlarmDao" class="cn.com.usky.iot.alarm.dao.YtiotVAlarmDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotVAlarmService" class="cn.com.usky.iot.alarm.service.YtiotVAlarmServiceImpl">
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- <property name="ytiotVUserphoneDao">
- <ref bean="ytiotVUserphoneDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotVDataDao" class="cn.com.usky.iot.data.dao.YtiotVDataDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotVDataService" class="cn.com.usky.iot.data.service.YtiotVDataServiceImpl">
- <property name="ytiotVCompanyDao">
- <ref bean="ytiotVCompanyDao"/>
- </property>
- <property name="ytiotVDataDao">
- <ref bean="ytiotVDataDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- </bean>
- <bean id="ytiotVUserCompanyService" class="cn.com.usky.iot.admin.service.YtiotVUserCompanyServiceImpl">
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="excelService" class="cn.com.usky.iot.excel.service.ExcelServiceImpl">
- <property name="ytiotVDataService">
- <ref bean="ytiotVDataService"/>
- </property>
- <property name="ytiotVAlarmService">
- <ref bean="ytiotVAlarmService"/>
- </property>
- <property name="ytiotTPatrolPlanService">
- <ref bean="ytiotTPatrolPlanService"/>
- </property>
- <property name="ytiotTInspectionRecordService">
- <ref bean="ytiotTInspectionRecordService"/>
- </property>
- <property name="ytiotTRouteService">
- <ref bean="ytiotTRouteService"/>
- </property>
- <property name="ytiotTInspectorsService">
- <ref bean="ytiotTInspectorsService"/>
- </property>
- <property name="ytiotTPatrolPointService">
- <ref bean="ytiotTPatrolPointService"/>
- </property>
- <property name="ytiotTQrcodeAnalysisService">
- <ref bean="ytiotTQrcodeAnalysisService"/>
- </property>
- <property name="ytiotTMaintenancePlanService">
- <ref bean="ytiotTMaintenancePlanService"/>
- </property>
- <property name="ytiotTQrcodeAnalysis2Service">
- <ref bean="ytiotTQrcodeAnalysis2Service"/>
- </property>
- <property name="ytiotTMaintenanceRecordService">
- <ref bean="ytiotTMaintenanceRecordService"/>
- </property>
- <property name="ytiotTRoute2Service">
- <ref bean="ytiotTRoute2Service"/>
- </property>
- <property name="ytiotTMaintenanceService">
- <ref bean="ytiotTMaintenanceService"/>
- </property>
- <property name="ytiotTMaintenancePersonService">
- <ref bean="ytiotTMaintenancePersonService"/>
- </property>
- <property name="ytiotXjInspectionPointsService">
- <ref bean="ytiotXjInspectionPointsService"/>
- </property>
- <property name="ytiotXjInspectorsService">
- <ref bean="ytiotXjInspectorsService"/>
- </property>
- <property name="ytiotXjPlanMasterService">
- <ref bean="ytiotXjPlanMasterService"/>
- </property>
- <property name="ytiotXjSpotOperationRecordService">
- <ref bean="ytiotXjSpotOperationRecordService"/>
- </property>
- <property name="ytiotXjEventProcessingService">
- <ref bean="ytiotXjEventProcessingService"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- </bean>
- <bean id="ytiotTPatrolPlanDao" class="cn.com.usky.iot.patrolplan.dao.YtiotTPatrolPlanDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTPatrolPlanService" class="cn.com.usky.iot.patrolplan.service.YtiotTPatrolPlanServicesImpl">
- <property name="ytiotTPatrolPlanDao">
- <ref bean="ytiotTPatrolPlanDao"/>
- </property>
- <property name="ytiotTInspectorsDao">
- <ref bean="ytiotTInspectorsDao"/>
- </property>
- <property name="ytiotTRouteDao">
- <ref bean="ytiotTRouteDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTInspectorsDao" class="cn.com.usky.iot.inspectors.dao.YtiotTInspectorsDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTInspectorsService" class="cn.com.usky.iot.inspectors.service.YtiotTInspectorsServicesImpl">
- <property name="ytiotTInspectorsDao">
- <ref bean="ytiotTInspectorsDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTRouteDao" class="cn.com.usky.iot.route.dao.YtiotTRouteDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTRouteService" class="cn.com.usky.iot.route.service.YtiotTRouteServicesImpl">
- <property name="ytiotTRouteDao">
- <ref bean="ytiotTRouteDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTQrcodeAnalysisDao" class="cn.com.usky.iot.qrcodeanalysis.dao.YtiotTQrcodeAnalysisDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTQrcodeAnalysisService"
- class="cn.com.usky.iot.qrcodeanalysis.service.YtiotTQrcodeAnalysisServicesImpl">
- <property name="ytiotTQrcodeAnalysisDao">
- <ref bean="ytiotTQrcodeAnalysisDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTQrcodeAnalysis2Dao" class="cn.com.usky.iot.qrcodeanalysis2.dao.YtiotTQrcodeAnalysis2DaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTQrcodeAnalysis2Service"
- class="cn.com.usky.iot.qrcodeanalysis2.service.YtiotTQrcodeAnalysis2ServicesImpl">
- <property name="ytiotTQrcodeAnalysis2Dao">
- <ref bean="ytiotTQrcodeAnalysis2Dao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenanceDao" class="cn.com.usky.iot.maintenance.dao.YtiotTMaintenanceDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenanceService" class="cn.com.usky.iot.maintenance.service.YtiotTMaintenanceServicesImpl">
- <property name="ytiotTMaintenanceDao">
- <ref bean="ytiotTMaintenanceDao"/>
- </property>
- <property name="ytiotTQrcodeAnalysis2Dao">
- <ref bean="ytiotTQrcodeAnalysis2Dao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTRoute2Dao" class="cn.com.usky.iot.route2.dao.YtiotTRoute2DaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTRoute2Service" class="cn.com.usky.iot.route2.service.YtiotTRoute2ServicesImpl">
- <property name="ytiotTRoute2Dao">
- <ref bean="ytiotTRoute2Dao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenancePersonDao" class="cn.com.usky.iot.maintenanceperson.dao.YtiotTMaintenancePersonDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenancePersonService"
- class="cn.com.usky.iot.maintenanceperson.service.YtiotTMaintenancePersonServicesImpl">
- <property name="ytiotTMaintenancePersonDao">
- <ref bean="ytiotTMaintenancePersonDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenancePlanDao" class="cn.com.usky.iot.maintenanceplan.dao.YtiotTMaintenancePlanDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenancePlanService"
- class="cn.com.usky.iot.maintenanceplan.service.YtiotTMaintenancePlanServicesImpl">
- <property name="ytiotTMaintenancePlanDao">
- <ref bean="ytiotTMaintenancePlanDao"/>
- </property>
- <property name="ytiotTMaintenancePersonDao">
- <ref bean="ytiotTMaintenancePersonDao"/>
- </property>
- <property name="ytiotTRoute2Dao">
- <ref bean="ytiotTRoute2Dao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenanceRecordDao" class="cn.com.usky.iot.maintenancerecord.dao.YtiotTMaintenanceRecordDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTMaintenanceRecordService"
- class="cn.com.usky.iot.maintenancerecord.service.YtiotTMaintenanceRecordServicesImpl">
- <property name="ytiotTMaintenanceRecordDao">
- <ref bean="ytiotTMaintenanceRecordDao"/>
- </property>
- <property name="ytiotTMaintenanceDao">
- <ref bean="ytiotTMaintenanceDao"/>
- </property>
- <property name="ytiotTQrcodeAnalysis2Dao">
- <ref bean="ytiotTQrcodeAnalysis2Dao"/>
- </property>
- <property name="ytiotTRoute2Dao">
- <ref bean="ytiotTRoute2Dao"/>
- </property>
- <property name="ytiotTMaintenancePersonDao">
- <ref bean="ytiotTMaintenancePersonDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTPatrolPointDao" class="cn.com.usky.iot.patrolpoint.dao.YtiotTPatrolPointDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTPatrolPointService" class="cn.com.usky.iot.patrolpoint.service.YtiotTPatrolPointServicesImpl">
- <property name="ytiotTPatrolPointDao">
- <ref bean="ytiotTPatrolPointDao"/>
- </property>
- <property name="ytiotTQrcodeAnalysisDao">
- <ref bean="ytiotTQrcodeAnalysisDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotTInspectionRecordDao" class="cn.com.usky.iot.inspectionrecord.dao.YtiotTInspectionRecordDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTInspectionRecordService"
- class="cn.com.usky.iot.inspectionrecord.service.YtiotTInspectionRecordServicesImpl">
- <property name="ytiotTInspectionRecordDao">
- <ref bean="ytiotTInspectionRecordDao"/>
- </property>
- <property name="ytiotTPatrolPointDao">
- <ref bean="ytiotTPatrolPointDao"/>
- </property>
- <property name="ytiotTQrcodeAnalysisDao">
- <ref bean="ytiotTQrcodeAnalysisDao"/>
- </property>
- <property name="ytiotTRouteDao">
- <ref bean="ytiotTRouteDao"/>
- </property>
- <property name="ytiotTInspectorsDao">
- <ref bean="ytiotTInspectorsDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotQueryService" class="cn.com.usky.iot.query.service.YtiotQueryServiceImpl">
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- <property name="ytiotVDataDao">
- <ref bean="ytiotVDataDao"/>
- </property>
- <property name="ytiotVUserphoneDao">
- <ref bean="ytiotVUserphoneDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotQueryDao">
- <ref bean="ytiotQueryDao"/>
- </property>
- </bean>
- <bean id="ytiotQueryDao" class="cn.com.usky.iot.query.dao.YtiotQueryDaoImpl">
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotVVideoAlarmService" class="cn.com.usky.iot.video.service.YtiotVVideoAlarmServiceImpl">
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- </bean>
- <bean id="ytiotTcAlarmPackagesDao" class="cn.com.usky.iot.alarmpackages.dao.YtiotTcAlarmPackagesDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTcAlarmPackagesZbDao" class="cn.com.usky.iot.alarmpackageszb.dao.YtiotTcAlarmPackagesZbDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotTOutcryPackageService" class="cn.com.usky.iot.outcrypackage.service.YtiotTOutcryPackageServicesImpl">
- <property name="ytiotTcAlarmPackagesDao">
- <ref bean="ytiotTcAlarmPackagesDao"/>
- </property>
- <property name="ytiotTcAlarmPackagesZbDao">
- <ref bean="ytiotTcAlarmPackagesZbDao"/>
- </property>
- <property name="ytiotVCompanyDao">
- <ref bean="ytiotVCompanyDao"/>
- </property>
- </bean>
- <!-- 东方明珠-杨浦项目首页 -->
- <bean id="ytiotVObjectDao" class="cn.com.usky.iot.object.dao.YtiotVObjectDaoImpl">
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotFrontpageQueryService" class="cn.com.usky.iot.frontpage.service.YtiotFrontpageQueryServiceImpl">
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotVCompanyDao">
- <ref bean="ytiotVCompanyDao"/>
- </property>
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- <property name="ytiotVObjectDao">
- <ref bean="ytiotVObjectDao"/>
- </property>
- <property name="ytiotVUserphoneDao">
- <ref bean="ytiotVUserphoneDao"/>
- </property>
- </bean>
- <!-- 东方明珠-杨浦项目首页结束 -->
- <!-- 巡检、维保开始 -->
- <bean id="ytiotXjInspectionPointsDao" class="cn.com.usky.iot.xjinspectionpoints.dao.YtiotXjInspectionPointsDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- <property name="ytiotXjSpotEquipmentDao">
- <ref bean="ytiotXjSpotEquipmentDao"/>
- </property>
- </bean>
- <bean id="ytiotXjInspectorsDao" class="cn.com.usky.iot.xjinspectors.dao.YtiotXjInspectorsDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- <property name="ytiotXjInspectorsCompanyDao">
- <ref bean="ytiotXjInspectorsCompanyDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="ytiotXjInspectorsCompanyDao"
- class="cn.com.usky.iot.xjinspectorscompany.dao.YtiotXjInspectorsCompanyDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjOperationRecordPhotosDao"
- class="cn.com.usky.iot.xjoperationrecordphotos.dao.YtiotXjOperationRecordPhotosDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanChildDao" class="cn.com.usky.iot.xjplanchild.dao.YtiotXjPlanChildDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- <property name="ytiotXjSpotOperationRecordDao">
- <ref bean="ytiotXjSpotOperationRecordDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanMasterDao" class="cn.com.usky.iot.xjplanmaster.dao.YtiotXjPlanMasterDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- <property name="ytiotXjPlanChildDao">
- <ref bean="ytiotXjPlanChildDao"/>
- </property>
- <property name="ytiotXjPlanSpotDao">
- <ref bean="ytiotXjPlanSpotDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanSpotDao" class="cn.com.usky.iot.xjplanspot.dao.YtiotXjPlanSpotDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanTeamDao" class="cn.com.usky.iot.xjplanteam.dao.YtiotXjPlanTeamDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjSpotEquipmentDao" class="cn.com.usky.iot.xjspotequipment.dao.YtiotXjSpotEquipmentDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjSpotOperationRecordDao"
- class="cn.com.usky.iot.xjspotoperationrecord.dao.YtiotXjSpotOperationRecordDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjTeamPersonnelDao" class="cn.com.usky.iot.xjteampersonnel.dao.YtiotXjTeamPersonnelDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjInspectorsService" class="cn.com.usky.iot.xjinspectors.service.YtiotXjInspectorsServicesImpl">
- <property name="ytiotXjInspectorsCompanyDao">
- <ref bean="ytiotXjInspectorsCompanyDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotXjInspectorsDao">
- <ref bean="ytiotXjInspectorsDao"/>
- </property>
- <property name="ytiotXjTeamPersonnelDao">
- <ref bean="ytiotXjTeamPersonnelDao"/>
- </property>
- <property name="ytiotXjPlanTeamDao">
- <ref bean="ytiotXjPlanTeamDao"/>
- </property>
- </bean>
- <bean id="ytiotXjInspectionPointsService"
- class="cn.com.usky.iot.xjinspectionpoints.service.YtiotXjInspectionPointsServicesImpl">
- <property name="ytiotXjInspectionPointsDao">
- <ref bean="ytiotXjInspectionPointsDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotXjSpotEquipmentDao">
- <ref bean="ytiotXjSpotEquipmentDao"/>
- </property>
- <property name="ytiotVCompanyDao">
- <ref bean="ytiotVCompanyDao"/>
- </property>
- <property name="ytiotXjSpotOperationRecordDao">
- <ref bean="ytiotXjSpotOperationRecordDao"/>
- </property>
- <property name="ytiotXjPlanSpotDao">
- <ref bean="ytiotXjPlanSpotDao"/>
- </property>
- <property name="ytiotXjPlanTeamDao">
- <ref bean="ytiotXjPlanTeamDao"/>
- </property>
- <property name="ytiotVDeviceStatusDao">
- <ref bean="ytiotVDeviceStatusDao"/>
- </property>
- <property name="ytiotXjPlanMasterDao">
- <ref bean="ytiotXjPlanMasterDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanMasterService" class="cn.com.usky.iot.xjplanmaster.service.YtiotXjPlanMasterServicesImpl">
- <property name="ytiotXjPlanMasterDao">
- <ref bean="ytiotXjPlanMasterDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotXjInspectionPointsDao">
- <ref bean="ytiotXjInspectionPointsDao"/>
- </property>
- <property name="ytiotXjInspectorsDao">
- <ref bean="ytiotXjInspectorsDao"/>
- </property>
- <property name="ytiotXjPlanTeamDao">
- <ref bean="ytiotXjPlanTeamDao"/>
- </property>
- <property name="ytiotXjPlanSpotDao">
- <ref bean="ytiotXjPlanSpotDao"/>
- </property>
- <property name="ytiotXjPlanChildDao">
- <ref bean="ytiotXjPlanChildDao"/>
- </property>
- <property name="ytiotXjSpotOperationRecordDao">
- <ref bean="ytiotXjSpotOperationRecordDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanChildService" class="cn.com.usky.iot.xjplanchild.service.YtiotXjPlanChildServicesImpl">
- <property name="ytiotXjPlanChildDao">
- <ref bean="ytiotXjPlanChildDao"/>
- </property>
- <property name="ytiotXjPlanMasterDao">
- <ref bean="ytiotXjPlanMasterDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotXjInspectionPointsDao">
- <ref bean="ytiotXjInspectionPointsDao"/>
- </property>
- <property name="ytiotXjInspectorsDao">
- <ref bean="ytiotXjInspectorsDao"/>
- </property>
- <property name="ytiotXjPlanTeamDao">
- <ref bean="ytiotXjPlanTeamDao"/>
- </property>
- <property name="ytiotXjPlanSpotDao">
- <ref bean="ytiotXjPlanSpotDao"/>
- </property>
- </bean>
- <bean id="ytiotXjPlanTeamService" class="cn.com.usky.iot.xjplanteam.service.YtiotXjPlanTeamServicesImpl">
- <property name="ytiotXjPlanTeamDao">
- <ref bean="ytiotXjPlanTeamDao"/>
- </property>
- <property name="ytiotXjInspectorsDao">
- <ref bean="ytiotXjInspectorsDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotXjInspectorsCompanyDao">
- <ref bean="ytiotXjInspectorsCompanyDao"/>
- </property>
- <property name="ytiotXjTeamPersonnelDao">
- <ref bean="ytiotXjTeamPersonnelDao"/>
- </property>
- <property name="ytiotXjPlanMasterDao">
- <ref bean="ytiotXjPlanMasterDao"/>
- </property>
- <property name="ytiotXjPlanChildDao">
- <ref bean="ytiotXjPlanChildDao"/>
- </property>
- </bean>
- <bean id="ytiotXjSpotOperationRecordService"
- class="cn.com.usky.iot.xjspotoperationrecord.service.YtiotXjSpotOperationRecordServicesImpl">
- <property name="ytiotXjSpotOperationRecordDao">
- <ref bean="ytiotXjSpotOperationRecordDao"/>
- </property>
- <property name="ytiotXjPlanMasterDao">
- <ref bean="ytiotXjPlanMasterDao"/>
- </property>
- <property name="ytiotXjPlanChildDao">
- <ref bean="ytiotXjPlanChildDao"/>
- </property>
- <property name="ytiotXjPlanTeamDao">
- <ref bean="ytiotXjPlanTeamDao"/>
- </property>
- <property name="ytiotXjInspectorsDao">
- <ref bean="ytiotXjInspectorsDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotXjInspectionPointsDao">
- <ref bean="ytiotXjInspectionPointsDao"/>
- </property>
- <property name="ytiotXjOperationRecordPhotosDao">
- <ref bean="ytiotXjOperationRecordPhotosDao"/>
- </property>
- </bean>
- <bean id="ytiotVDeviceStatusDao" class="cn.com.usky.iot.devicestatus.dao.YtiotVDeviceStatusDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotXjEventProcessingDao" class="cn.com.usky.iot.xjeventprocessing.dao.YtiotXjEventProcessingDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- <property name="ytiotXjToExamine1Dao">
- <ref bean="ytiotXjToExamine1Dao"/>
- </property>
- </bean>
- <bean id="ytiotXjToExamineDao" class="cn.com.usky.iot.xjtoexamine.dao.YtiotXjToExamineDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjToExamine1Dao" class="cn.com.usky.iot.xjtoexamine1.dao.YtiotXjToExamine1DaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotXjEventProcessingService"
- class="cn.com.usky.iot.xjeventprocessing.service.YtiotXjEventProcessingServicesImpl">
- <property name="ytiotXjEventProcessingDao">
- <ref bean="ytiotXjEventProcessingDao"/>
- </property>
- <property name="ytiotXjToExamine1Dao">
- <ref bean="ytiotXjToExamine1Dao"/>
- </property>
- <property name="ytiotXjSpotOperationRecordDao">
- <ref bean="ytiotXjSpotOperationRecordDao"/>
- </property>
- <property name="ytiotXjInspectorsDao">
- <ref bean="ytiotXjInspectorsDao"/>
- </property>
- <property name="ytiotXjOperationRecordPhotosDao">
- <ref bean="ytiotXjOperationRecordPhotosDao"/>
- </property>
- <property name="ytiotXjInspectionPointsDao">
- <ref bean="ytiotXjInspectionPointsDao"/>
- </property>
- </bean>
- <!-- 巡检、维保、维修结束 -->
- <!-- 语音报警配置开始-->
- <bean id="ytiotYyPzbDao" class="cn.com.usky.iot.yypzb.dao.YtiotYyPzbDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- <property name="ytiotYyCzjlDao">
- <ref bean="ytiotYyCzjlDao"/>
- </property>
- </bean>
- <bean id="ytiotYyPzb2Dao" class="cn.com.usky.iot.yypzb2.dao.YtiotYyPzb2DaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotYySjjlDao" class="cn.com.usky.iot.yysjjl.dao.YtiotYySjjlDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotYyPzbService" class="cn.com.usky.iot.yypzb.service.YtiotYyPzbServicesImpl">
- <property name="ytiotYyPzbDao">
- <ref bean="ytiotYyPzbDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotYySjjlDao">
- <ref bean="ytiotYySjjlDao"/>
- </property>
- <property name="ytiotYyCzjlDao">
- <ref bean="ytiotYyCzjlDao"/>
- </property>
- <property name="ytiotYyXhconfigDao">
- <ref bean="ytiotYyXhconfigDao"/>
- </property>
- </bean>
- <bean id="ytiotYyCzjlDao" class="cn.com.usky.iot.yyczjl.dao.YtiotYyCzjlDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="ytiotYyXhconfigDao" class="cn.com.usky.iot.yyxhconfig.dao.YtiotYyXhconfigDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- <property name="ytiotTOrderDao">
- <ref bean="ytiotTOrderDao"/>
- </property>
- </bean>
- <bean id="simpleclient" class="cn.com.usky.iot.mqtt.MqttClient" init-method="save">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- </bean>
- <bean id="MqttUtil" class="cn.com.usky.iot.mqtt.MqttUtil">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- </bean>
- <bean id="fireStationService" class="cn.com.usky.iot.service.fireStationService.FireStationServiceImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- </bean>
- <bean id="contractService" class="cn.com.usky.iot.service.contractService.ContractServiceImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- <property name="ytiotVUserphoneDao">
- <ref bean="ytiotVUserphoneDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="GroupService" class="cn.com.usky.iot.service.groupService.GroupServiceImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="ytiotVAlarmDao">
- <ref bean="ytiotVAlarmDao"/>
- </property>
- <property name="ytiotVUserphoneDao">
- <ref bean="ytiotVUserphoneDao"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- </bean>
- <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
- <property name="defaultEncoding">
- <value>UTF-8</value>
- </property>
- <property name="maxUploadSize">
- <value>32505856</value><!-- 上传文件大小限制为31M,31*1024*1024 -->
- </property>
- <property name="maxInMemorySize">
- <value>4096</value>
- </property>
- </bean>
- <bean id="ytiotTEfAnalysisDao" class="cn.com.usky.iot.EfAnalysis.dao.YtiotTEfAnalysisDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTEfAnalysisService" class="cn.com.usky.iot.EfAnalysis.service.YtiotTEfAnalysisServicesImpl">
- <property name="ytiotTEfAnalysisDao">
- <ref bean="ytiotTEfAnalysisDao"/>
- </property>
- </bean>
- <bean id="LoginService" class="cn.com.usky.iot.controller.login.LoginServiceImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="ytiotTAdminDao">
- <ref bean="ytiotTAdminDao"/>
- </property>
- <property name="TokenAuthService">
- <ref bean="TokenAuthService"/>
- </property>
- </bean>
- <bean id="TokenAuthService" class="cn.com.usky.iot.auth.TokenAuthService">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="LoginService">
- <ref bean="LoginService"/>
- </property>
- </bean>
- <bean id="ytiotTAdminStateEntityDao" class="cn.com.usky.iot.userstatus.dao.YtiotTAdminStateEntityDaoImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </property>
- <property name="daoQuery">
- <ref bean="daoQuery"/>
- </property>
- </bean>
- <bean id="ytiotTAdminStateEntityService"
- class="cn.com.usky.iot.userstatus.service.YtiotTAdminStateEntityServicesImpl">
- <property name="ytiotTAdminStateEntityDao">
- <ref bean="ytiotTAdminStateEntityDao"/>
- </property>
- <property name="ytiotVUserCompanyDao">
- <ref bean="ytiotVUserCompanyDao"/>
- </property>
- <property name="ytiotTEfAnalysisDao">
- <ref bean="ytiotTEfAnalysisDao"/>
- </property>
- </bean>
- </beans>
|