| | |
| | | package com.zt.life.modules.mainPart.taskReliability.dao; |
| | | |
| | | import com.zt.common.dao.BaseDao; |
| | | import com.zt.life.modules.mainPart.taskReliability.dto.ProductStatusDto; |
| | | import com.zt.life.modules.mainPart.taskReliability.model.SimulatAssess; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | |
| | | /** |
| | |
| | | @Mapper |
| | | public interface SimulatAssessDao extends BaseDao<SimulatAssess> { |
| | | |
| | | List<SimulatAssess> getList(Map<String, Object> params); |
| | | List<SimulatAssess> getList(Long productId, Long taskModelId); |
| | | |
| | | |
| | | Integer getNumById(Long productId, Long taskModelId); |
| | | |
| | | SimulatAssess getParams(Long id, Long taskModelId); |
| | | |
| | | List<ProductStatusDto> getChildren(Long productId, Long taskId); |
| | | } |