对比新文件 |
| | |
| | | package com.gk.firework.Mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.firework.Domain.TransportCertificate; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Repository |
| | | public interface TransportCertificateMapper extends BaseMapper<TransportCertificate> { |
| | | |
| | | List<TransportCertificate> selectPages(Page<TransportCertificate> page, Map params); |
| | | |
| | | TransportCertificate getOneById(@Param("id") Long id); |
| | | |
| | | TransportCertificate selectByCode(@Param("code") String code); |
| | | |
| | | List<TransportCertificate> selectWarnList(@Param("start") Date start, @Param("end") Date end); |
| | | } |