heheng
7 天以前 189849927e37278c8bc03202bd714aca7a0f8f7d
multi-system/src/main/java/com/gkhy/exam/system/service/InternalAuditCheckService.java
@@ -7,6 +7,9 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.system.domain.vo.InternalAuditCheckVo;
import java.util.List;
import java.util.Map;
/**
 * <p>
 * 内审检查 服务类
@@ -18,11 +21,15 @@
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);
}