package com.gkhy.safePlatform.doublePrevention.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.doublePrevention.entity.PreventRiskControlTemplate; import com.gkhy.safePlatform.doublePrevention.entity.dto.PreventRiskControlTemplateDO; import java.util.List; public interface PreventRiskControlTemplateService extends IService { /** * 获取控制措施模板 * */ List listMeasureTemplates(); /** * 获取控制措施1与控制措施2 * */ PreventRiskControlTemplateDO getByClassify1AndClassify2(String classify1, String classify2); PreventRiskControlTemplate getControlTemplateById(Byte classify2); }