123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392 |
- <?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"
- xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd
- http://www.springframework.org/schema/mvc
- http://www.springframework.org/schema/mvc/spring-mvc.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
- ">
- <!-- 默认的注解映射的支持 -->
- <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"/>
- <aop:config>
- <!-- 切面 -->
- <aop:aspect ref="AutoLogAspect">
- <!-- 定义切点 -->
- <aop:pointcut expression="@annotation(cn.com.usky.iot.annotion.AutoLog)" id="pt"/>
- <!-- 声明环绕通知 -->
- <aop:around method="around" pointcut-ref="pt"/>
- </aop:aspect>
- </aop:config>
- <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="LogServiceImpl" class="cn.com.usky.log.LogServiceImpl">
- <property name="hibernateTemplate">
- <ref bean="hibernateTemplate"/>
- </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>
- <bean id="AutoLogAspect"
- class="cn.com.usky.iot.aspect.AutoLogAspect">
- <property name="TokenAuthService">
- <ref bean="TokenAuthService"/>
- </property>
- <property name="LogServiceImpl">
- <ref bean="LogServiceImpl"/>
- </property>
- </bean>
- </beans>
|