This commit is contained in:
insanity 2017-06-23 12:03:18 +09:00
parent 0dfb06c2e6
commit 639a18a9a5
16 changed files with 208 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaCrawler;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaCrawlerDAO extends JpaRepository<MetaCrawler, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaCrawlerInputItem;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaCrawlerInputItemDAO extends JpaRepository<MetaCrawlerInputItem, Integer>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaInfraType;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaInfraTypeDAO extends JpaRepository<MetaInfraType, Integer>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaInfraVendor;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaInfraVendorDAO extends JpaRepository<MetaInfraVendor, Integer>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaInputType;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaInputTypeDAO extends JpaRepository<MetaInputType, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaMemberStatus;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaMemberStatusDAO extends JpaRepository<MetaMemberStatus, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaNotification;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaNotificationDAO extends JpaRepository<MetaNotification, Long>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaProbeArchitecture;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaProbeArchitectureDAO extends JpaRepository<MetaProbeArchitecture, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaProbeOs;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaProbeOsDAO extends JpaRepository<MetaProbeOs, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaProbePackage;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaProbePackageDAO extends JpaRepository<MetaProbePackage, Long>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaProbeTaskType;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaProbeTaskTypeDAO extends JpaRepository<MetaProbeTaskType, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaProbeVersion;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaProbeVersionDAO extends JpaRepository<MetaProbeVersion, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaSensorItem;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaSensorItemDAO extends JpaRepository<MetaSensorItem, Integer>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaSensorItemType;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaSensorItemTypeDAO extends JpaRepository<MetaSensorItemType, Short>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaVendorCrawler;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaVendorCrawlerDAO extends JpaRepository<MetaVendorCrawler, Integer>{
}

View File

@ -0,0 +1,13 @@
package com.loafle.overflow.meta.dao;
import com.loafle.overflow.meta.MetaVendorCrawlerSensorItem;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
/**
* Created by insanity on 17. 6. 23.
*/
@Repository
public interface MetaVendorCrawlerSensorItemDAO extends JpaRepository<MetaVendorCrawlerSensorItem, Long>{
}