wangfei
2025-11-24 e08c30f6a36a15be4e019b5e0d631f32f6d06029
hangzhoumesParent/common/servicebase/src/main/java/com/mes/damage/mapper/DamageMapper.java
@@ -3,7 +3,10 @@
import com.baomidou.dynamic.datasource.annotation.DS;
import com.github.yulichang.base.MPJBaseMapper;
import com.mes.damage.entity.Damage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.damage.entity.dto.DamageDTO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * <p>
@@ -13,7 +16,16 @@
 * @author wu
 * @since 2024-06-13
 */
@DS("hangzhoumes")
@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
    );
}