package com.example.northglasserpclient.mapper.sd;
|
|
import com.example.northglasserpclient.domain.po.sd.OrderProcessDetail;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import io.swagger.v3.oas.annotations.Parameter;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author guo
|
* @since 2025-09-18
|
*/
|
@Mapper
|
public interface OrderProcessDetailMapper extends BaseMapper<OrderProcessDetail> {
|
|
Integer getProductionQuantity(@Param("orderId") String orderId, @Param("productionId") String productionId);
|
}
|