“djh”
3 days ago c26e227abe288476c11b0a8b7875045e71efa14c
multi-system/src/main/java/com/gkhy/exam/system/service/ManagementPlanService.java
@@ -1,10 +1,9 @@
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.gkhy.exam.system.domain.ManagementPlan;
import com.baomidou.mybatisplus.extension.service.IService;
/**
 * <p>
@@ -16,7 +15,7 @@
 */
public interface ManagementPlanService extends IService<ManagementPlan> {
    CommonPage selectManagementPlanList(Integer companyId);
    CommonPage selectManagementPlanList(ManagementPlan managementPlan);
    CommonResult insertManagementPlan(ManagementPlan managementPlan);
@@ -24,4 +23,6 @@
    CommonResult deletedManagementPlan(Integer id);
    CommonResult copyManagementPlan(Integer companyId, String sourceYear, String targetYear);
}