| | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.PlaQty; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface PlaQtyMapper extends BaseMapper<PlaQty> { |
| | | |
| | | @Select("select top(10) order_no from asr_pla_qty where order_no like '%' + #{orderNo} + '%' group by order_no") |
| | | List<String> selectOrderNo(@Param("orderNo") String orderNo); |
| | | |
| | | } |