对比新文件 |
| | |
| | | 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.EntryOrderInfo; |
| | | import com.gk.firework.Domain.Vo.EntryOrderInfoVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Repository |
| | | public interface EntryOrderInfoMapper extends BaseMapper<EntryOrderInfo> { |
| | | |
| | | EntryOrderInfo selectByPrimaryKey(Long id); |
| | | |
| | | List<EntryOrderInfoVo> selectPages(Page<EntryOrderInfoVo> page, Map params); |
| | | |
| | | EntryOrderInfo selectEntryOrderByTimeAndUser(@Param("datetime") String datetime, @Param("createdby") String createdby); |
| | | |
| | | List<EntryOrderInfo> selectPages(@Param("params") Map params); |
| | | |
| | | BigDecimal selectEnterpriseEntryNumber(@Param("companyNumber") String companyNumber, |
| | | @Param("starttime") Object starttime, @Param("endtime") Object endtime); |
| | | |
| | | BigDecimal selectCityEntryNumber(@Param("city") String name, @Param("starttime") Object starttime, @Param("endtime") Object endtime); |
| | | |
| | | List<EntryOrderInfo> selectByCert(@Param("code") String code); |
| | | } |