| | |
| | | package com.zy.api.service; |
| | | |
| | | import com.core.common.R; |
| | | import com.zy.api.entity.OrderParams; |
| | | import com.zy.api.entity.PubOrderParams; |
| | | import com.zy.api.entity.ReportOrderParam; |
| | | import com.zy.api.entity.SyncMatParmas; |
| | | |
| | | public interface KopenApiService { |
| | |
| | | * @param params |
| | | * @return com.core.common.R |
| | | */ |
| | | R receiveOrders(OrderParams params); |
| | | R receiveOrders(PubOrderParams params); |
| | | |
| | | /** |
| | | * 基础零件变更 |
| | |
| | | * @author Ryan |
| | | * @date 2025/11/24 15:33 |
| | | */ |
| | | void addOrUpdateOrders(OrderParams params, String type) ; |
| | | void addOrUpdateOrders(PubOrderParams params, String type) ; |
| | | |
| | | /** |
| | | * 上架派工单反馈 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | R getInDispatchResult(ReportOrderParam params); |
| | | } |