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 { @Autowired private ParkSupportDao parkSupportDao; /** * 删除园区配套 * * @param id */ public void deleteParkSupport(Integer id) { parkSupportDao.deleteParkSupport(id); } }