| 12345678910111213141516171819202122 |
- 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.ParkAttachmentDao;
- import platform.modules.carrier.entity.ParkAttachment;
- /**
- * @author kevin
- * @since 2019/4/3 10:29 AM
- */
- @Service
- public class ParkAttachmentService extends BaseService<ParkAttachment> {
- @Autowired
- private ParkAttachmentDao parkAttachmentDao;
- public void deleteByParkId(Integer id) {
- parkAttachmentDao.deleteByParkId(id);
- }
- }
|