package com.gkhy.exam.system.service; 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; /** *

* 不符合项管理 服务类 *

* * @author hh * @since 2025-07-10 15:11:50 */ public interface InconsistentService extends IService { CommonPage selectInconsistentList(Integer companyId); CommonResult insertInconsistent(Inconsistent inconsistent); CommonResult updateInconsistent(Inconsistent inconsistent); CommonResult deletedInconsistent(Integer id); }