| 1234567891011121314151617181920212223242526272829 |
- package platform.modules.company.service;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import platform.common.base.service.BaseService;
- import platform.modules.company.dao.StockLandOutParkDao;
- import platform.modules.company.entity.StockLandOutPark;
- import javax.annotation.Resource;
- /**
- * 存量用地 园区外信息Service
- *
- * @author hp
- */
- @Service
- @Transactional
- public class StockLandOutParkService extends BaseService<StockLandOutPark> {
- private static final Logger logger = LoggerFactory.getLogger(StockLandOutParkService.class);
- @Resource
- private StockLandOutParkDao stockLandOutParkDao;
- }
|