12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325 |
- <?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="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>
|