对比新文件 |
| | |
| | | package com.gk.firework.Service.ServiceImpl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.gk.firework.Domain.TransportCertificateApproach; |
| | | import com.gk.firework.Mapper.TransportCertificateApproachMapper; |
| | | import com.gk.firework.Service.TransportCertificateApproachService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service("transportCertificateApproachService") |
| | | public class TransportCertificateApproachServiceImpl extends ServiceImpl<TransportCertificateApproachMapper, TransportCertificateApproach> implements TransportCertificateApproachService { |
| | | |
| | | @Autowired |
| | | private TransportCertificateApproachMapper transportCertificateApproachMapper; |
| | | /** |
| | | * @Description: 根据{运输证编码}删除途径地 |
| | | * @date 2021/4/2 15:28 |
| | | */ |
| | | @Override |
| | | public void deleteByCertificateCode(String code) { |
| | | transportCertificateApproachMapper.deleteByCertificateCode(code); |
| | | } |
| | | } |