liyong
10 天以前 2d03ec79e1892248b520cf097e8a58dd82a4892f
src/main/java/com/ruoyi/production/service/ProductionPrintOrderService.java
@@ -5,6 +5,9 @@
import com.ruoyi.production.pojo.ProductionPrintOrder;
import com.baomidou.mybatisplus.extension.service.IService;
import javax.annotation.Nullable;
import java.util.List;
/**
* @author buhuazhen
* @description 针对表【production_print_order(印刷定印单)】的数据库操作Service
@@ -24,4 +27,14 @@
     * @return
     */
    ProductionPrintOrderDto getByProductWordId(Long id);
    List<ProductionPrintOrder> getListByOrders(@Nullable List<Long> orderIds);
    /**
     * 生成导出excel 印刷单模版
     * @param orderId 订单id
     */
    byte[] exportPrintExcelByWordId(@Nullable Long orderId);
}