| | |
| | | package com.gkhy.exam.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gkhy.exam.common.api.CommonPage; |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.system.domain.Inconsistent; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gkhy.exam.system.domain.StandardizedTemplate; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2025-07-10 15:11:50 |
| | | */ |
| | | public interface InconsistentService extends IService<Inconsistent> { |
| | | CommonPage selectInconsistentList(Integer companyId); |
| | | CommonPage selectInconsistentList(Integer companyId,String year); |
| | | |
| | | CommonResult insertInconsistent(Inconsistent inconsistent); |
| | | |