| | |
| | | |
| | | import com.gkhy.exam.system.domain.InternalAuditCheck; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.system.domain.InternalAuditCheckCatalogue; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | @Mapper |
| | | public interface InternalAuditCheckMapper extends BaseMapper<InternalAuditCheck> { |
| | | List<InternalAuditCheck> selectInternalAuditCheckList(Integer companyId); |
| | | List<InternalAuditCheck> selectInternalAuditCheckList(@Param("companyId") Integer companyId); |
| | | |
| | | int getStatisticData(@Param("companyId") Integer companyId, @Param("startTime") String startTime, @Param("endTime") String endTime); |
| | | |
| | | |
| | | Integer updateByYearAndDeptId(InternalAuditCheck internalAuditCheck); |
| | | } |