| | |
| | | package com.zt.life.modules.mainPart.taskReliability.dao; |
| | | |
| | | import com.zt.common.dao.BaseDao; |
| | | import com.zt.life.modules.mainPart.taskReliability.model.SimulatAssess; |
| | | import com.zt.life.modules.mainPart.taskReliability.dto.ProductStatusDto; |
| | | import com.zt.life.modules.mainPart.taskReliability.dto.WeakDto; |
| | | import com.zt.life.modules.mainPart.taskReliability.dto.verifyDto; |
| | | import com.zt.life.modules.mainPart.taskReliability.model.*; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | |
| | |
| | | @Mapper |
| | | public interface SimulatAssessDao extends BaseDao<SimulatAssess> { |
| | | |
| | | List<SimulatAssess> getList(Long productId, Long taskModelId); |
| | | List<SimulatAssess> getList(Long taskModelId); |
| | | |
| | | |
| | | Integer getNumById(Long productId, Long taskModelId); |
| | | |
| | | List<SimulatAssess> getParams(Long id, Long taskModelId); |
| | | SimulatAssess getParams(Long id, Long taskModelId); |
| | | |
| | | List<ProductStatusDto> getChildren(Long productId, Long taskId); |
| | | |
| | | List<SimulatAssessTaskPhaseModel> getTaskPhaseModelByTaskId(Long taskId); |
| | | |
| | | List<TimeDiagram> getTimeDiagram(Map<String, Object> params); |
| | | |
| | | List<SimulatAssessTaskPhaseModel> getModelList(Long productId, Long fzId); |
| | | |
| | | ModelRbd getModelByProductGk(Long gkId, Long productId); |
| | | |
| | | List<WeakDto> getProductList(Long taskId, Long productId); |
| | | |
| | | SimulatAssess getByTaskId(Long taskModelId); |
| | | |
| | | List<OperatConditModel> getModel(Long taskId); |
| | | |
| | | List<verifyDto> getNode(Long modelId); |
| | | |
| | | Integer getVoteNum(Long id); |
| | | } |