wang
2024-03-28 04adb88a2ed54cdf4c2958c79972c30109b9b5b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mes.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.entity.GlassInfo;
import com.mes.entity.Tempering;
 
import org.apache.ibatis.annotations.*;
 
@Mapper
public interface TemperingMapper extends BaseMapper<Tempering> {
 
 
//查询该玻璃的尺寸和坐标
@Select("select *from glass_info where id=#{glassid};")
GlassInfo SelectOutGlass(String glassid);
 
@Select("select *from glass_info where id=#{glassid};")
int SelectTempering(String glassid);
 
}