| | |
| | | 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> |
| | |
| | | */ |
| | | public interface ManagementPlanService extends IService<ManagementPlan> { |
| | | |
| | | CommonPage selectManagementPlanList(Integer companyId); |
| | | CommonPage selectManagementPlanList(ManagementPlan managementPlan); |
| | | |
| | | CommonResult insertManagementPlan(ManagementPlan managementPlan); |
| | | |
| | |
| | | |
| | | CommonResult deletedManagementPlan(Integer id); |
| | | |
| | | CommonResult copyManagementPlan(Integer companyId, String sourceYear, String targetYear); |
| | | |
| | | } |