guoyuji
2024-02-01 60eb14c105dc7b981be3be87003a0411155d3cf7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.example.erp.mapper.sd;
 
import com.example.erp.entity.sd.OrderGlassDetail;
import com.example.erp.entity.sd.OrderProcessDetail;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface OrderGlassDetailMapper {
    boolean insertOrderGlassDetail(@Param("orderId") String orderId);
 
    List<OrderGlassDetail> selectOrderGlassDetail(@Param("orderId") String orderId);
}