| 123456789101112131415161718192021222324252627 |
- package platform.modules.carrier.service;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import platform.common.base.service.BaseService;
- import platform.modules.carrier.dao.ParkSupportDao;
- import platform.modules.carrier.entity.ParkSupport;
- /**
- * @author kevin
- * @since 2019/4/3 5:26 PM
- */
- @Service
- public class ParkSupportService extends BaseService<ParkSupport> {
- @Autowired
- private ParkSupportDao parkSupportDao;
- /**
- * 删除园区配套
- *
- * @param id
- */
- public void deleteParkSupport(Integer id) {
- parkSupportDao.deleteParkSupport(id);
- }
- }
|