StockLandOutParkService.java 746 B

1234567891011121314151617181920212223242526272829
  1. package platform.modules.company.service;
  2. import org.slf4j.Logger;
  3. import org.slf4j.LoggerFactory;
  4. import org.springframework.stereotype.Service;
  5. import org.springframework.transaction.annotation.Transactional;
  6. import platform.common.base.service.BaseService;
  7. import platform.modules.company.dao.StockLandOutParkDao;
  8. import platform.modules.company.entity.StockLandOutPark;
  9. import javax.annotation.Resource;
  10. /**
  11. * 存量用地 园区外信息Service
  12. *
  13. * @author hp
  14. */
  15. @Service
  16. @Transactional
  17. public class StockLandOutParkService extends BaseService<StockLandOutPark> {
  18. private static final Logger logger = LoggerFactory.getLogger(StockLandOutParkService.class);
  19. @Resource
  20. private StockLandOutParkDao stockLandOutParkDao;
  21. }