ParkSupportAttachmentDraftService.java 756 B

1234567891011121314151617181920212223
  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.ParkSupportAttachmentDraftDao;
  6. import platform.modules.carrier.entity.ParkSupportAttachment;
  7. import platform.modules.carrier.entity.ParkSupportAttachmentDraft;
  8. /**
  9. * @author kevin
  10. * @since 2019/4/3 5:51 PM
  11. */
  12. @Service
  13. public class ParkSupportAttachmentDraftService extends BaseService<ParkSupportAttachmentDraft> {
  14. @Autowired
  15. private ParkSupportAttachmentDraftDao supportAttachmentDraftDao;
  16. public void deleteBySupportId(Integer id) {
  17. supportAttachmentDraftDao.deleteBySupportId(id);
  18. }
  19. }