| | |
| | | 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 |
| | |
| | | * @return |
| | | */ |
| | | ProductionPrintOrderDto getByProductWordId(Long id); |
| | | |
| | | |
| | | List<ProductionPrintOrder> getListByOrders(@Nullable List<Long> orderIds); |
| | | |
| | | /** |
| | | * 生成导出excel 印刷单模版 |
| | | * @param orderId 订单id |
| | | */ |
| | | byte[] exportPrintExcelByWordId(@Nullable Long orderId); |
| | | |
| | | } |