package com.mes.damage.mapper;
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
import com.github.yulichang.base.MPJBaseMapper;
|
import com.mes.damage.entity.Damage;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author wu
|
* @since 2024-06-13
|
*/
|
@DS("northGlassMes")
|
public interface DamageMapper extends MPJBaseMapper<Damage> {
|
|
List<Damage> queryUnTempByFlowCardId(@Param("flowCardId") String flowCardId);
|
}
|