| 1234567891011121314151617181920212223 |
- 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.ParkSupportAttachmentDraftDao;
- import platform.modules.carrier.entity.ParkSupportAttachment;
- import platform.modules.carrier.entity.ParkSupportAttachmentDraft;
- /**
- * @author kevin
- * @since 2019/4/3 5:51 PM
- */
- @Service
- public class ParkSupportAttachmentDraftService extends BaseService<ParkSupportAttachmentDraft> {
- @Autowired
- private ParkSupportAttachmentDraftDao supportAttachmentDraftDao;
- public void deleteBySupportId(Integer id) {
- supportAttachmentDraftDao.deleteBySupportId(id);
- }
- }
|