自动化立体仓库 - WMS系统
Junjie
2023-06-02 0f478c31b5327ffe4bfdebd72fdf23a6df5d37e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.service;
 
import com.zy.asrs.entity.OrderLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface OrderLogService extends IService<OrderLog> {
 
    /**
     * 保存单据到历史档
     * @param orderNo
     * @return
     */
    boolean save(String orderNo);
 
}