| | |
| | | import com.ruoyi.production.dto.ProductWorkOrderDto; |
| | | import com.ruoyi.production.pojo.ProductWorkOrder; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | public interface ProductWorkOrderService extends IService<ProductWorkOrder>{ |
| | | |
| | | IPage<ProductWorkOrderDto> listPage(Page<ProductWorkOrderDto> page, ProductWorkOrderDto productWorkOrder); |
| | | |
| | | int updateProductWorkOrder(ProductWorkOrderDto productWorkOrderDto); |
| | | |
| | | ProductWorkOrderDto getProductWorkOrderFlowCard(Long id); |
| | | void down(HttpServletResponse response, ProductWorkOrder productWorkOrder); |
| | | } |