| | |
| | | import org.jeecg.modules.eam.entity.EamTechnicalStatusEvaluationStandardDetail; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 技术状态鉴定规范明细 |
| | | * @Author: jeecg-boot |
| | |
| | | */ |
| | | public interface IEamTechnicalStatusEvaluationStandardDetailService extends IService<EamTechnicalStatusEvaluationStandardDetail> { |
| | | |
| | | /** |
| | | * 根据规范ID删除检查项 |
| | | * @param standardId 规范ID |
| | | */ |
| | | void removeByStandardId(String standardId); |
| | | |
| | | /** |
| | | * 根据规范ID删除检查项 |
| | | * @param standardId 规范ID |
| | | * @param category 分类 |
| | | */ |
| | | void removeByStandardIdAndCategory(String standardId, String category); |
| | | |
| | | /** |
| | | * 获取规范明细数据 |
| | | * @param id |
| | | */ |
| | | List<EamTechnicalStatusEvaluationStandardDetail> queryList(String id); |
| | | } |