| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gkhy.exam.system.domain.vo.InternalAuditCheckVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 内审检查 服务类 |
| | |
| | | public interface InternalAuditCheckService extends IService<InternalAuditCheck> { |
| | | CommonPage selectInternalAuditCheckList(Integer companyId); |
| | | |
| | | CommonResult insertInternalAuditCheck(InternalAuditCheckVo internalAuditCheck); |
| | | CommonResult insertInternalAuditCheck(InternalAuditCheck internalAuditCheck); |
| | | |
| | | CommonResult updateInternalAuditCheck(InternalAuditCheckVo internalAuditCheck); |
| | | CommonResult updateInternalAuditCheck(InternalAuditCheck internalAuditCheck); |
| | | |
| | | CommonResult deletedInternalAuditCheck(Integer id); |
| | | |
| | | CommonResult internalAuditCheckInfo(Integer id); |
| | | CommonResult updateByYearAndDeptId(InternalAuditCheck internalAuditCheck); |
| | | |
| | | List<InternalAuditCheck> selectByMap(Map<String, Object> stringObjectHashMap); |
| | | |
| | | // CommonResult internalAuditCheckInfo(Integer id); |
| | | } |