ParkSupportService.java 663 B

123456789101112131415161718192021222324252627
  1. package platform.modules.carrier.service;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.stereotype.Service;
  4. import platform.common.base.service.BaseService;
  5. import platform.modules.carrier.dao.ParkSupportDao;
  6. import platform.modules.carrier.entity.ParkSupport;
  7. /**
  8. * @author kevin
  9. * @since 2019/4/3 5:26 PM
  10. */
  11. @Service
  12. public class ParkSupportService extends BaseService<ParkSupport> {
  13. @Autowired
  14. private ParkSupportDao parkSupportDao;
  15. /**
  16. * 删除园区配套
  17. *
  18. * @param id
  19. */
  20. public void deleteParkSupport(Integer id) {
  21. parkSupportDao.deleteParkSupport(id);
  22. }
  23. }