自动化立体仓库 - WMS系统
chen.llin
3 天以前 2307db8fc3abd03227f54e24f73d87fb34908dc2
1
2
3
4
5
6
7
8
9
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.TaskLog;
 
public interface TaskLogService extends IService<TaskLog> {
 
    boolean save(Integer wrkNo);
}