自动化立体仓库 - WCS系统
Junjie
2023-05-22 5ce93b60b31ca5a346109fe1d232a591469b163d
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.WmsWrkLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface WmsWrkLogService extends IService<WmsWrkLog> {
 
    boolean save(Integer wmsWrkNo);
 
}