wangfei
2025-11-24 e08c30f6a36a15be4e019b5e0d631f32f6d06029
hangzhoumesParent/common/servicebase/src/main/java/com/mes/damage/mapper/DamageMapper.java
@@ -3,6 +3,10 @@
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>
@@ -15,4 +19,13 @@
@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
    );
}