| | |
| | | package com.gkhy.exam.system.mapper; |
| | | |
| | | import com.gkhy.exam.system.domain.Inconsistent; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.system.domain.Inconsistent; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | @Mapper |
| | | public interface InconsistentMapper extends BaseMapper<Inconsistent> { |
| | | |
| | | List<Inconsistent> selectInconsistentList(Integer companyId); |
| | | List<Inconsistent> selectInconsistentList(@Param("companyId") Integer companyId, @Param("year") String year); |
| | | |
| | | } |