wu
2024-02-26 fc8a64cd0e237932070b4061093799f212624528
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mes.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.entity.OrderTest;
import com.mes.entity.Tempering;
 
import org.apache.ibatis.annotations.*;
 
@Mapper
public interface OrderTestMapper extends BaseMapper<OrderTest> {
 
 
//查询该玻璃的尺寸和坐标
@Select("select*from where id=#{glassId}")
Tempering SelectTempering(String glassId);
 
 
}