| | |
| | | import com.baomidou.dynamic.datasource.annotation.DS; |
| | | import com.github.yulichang.base.MPJBaseMapper; |
| | | import com.mes.damage.entity.Damage; |
| | | import com.mes.damage.entity.dto.DamageDTO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @DS("northGlassMes") |
| | | public interface DamageMapper extends MPJBaseMapper<Damage> { |
| | | |
| | | List<Damage> queryUnTempByFlowCardId(@Param("flowCardId") String flowCardId); |
| | | |
| | | List<DamageDTO> selectDamageList( |
| | | @Param("startTime") String startTime, |
| | | @Param("endTime") String endTime, |
| | | @Param("type") int type, |
| | | @Param("status") int status, |
| | | @Param("workingProcedure") String workingProcedure |
| | | ); |
| | | } |