自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-07-03 e2c30d013ff3949f000b94f6e0376afc886b301b
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.WrkDetl;
import com.zy.asrs.entity.MatCodeCountDto;
 
import java.util.List;
 
public interface WrkDetlService extends IService<WrkDetl> {
 
    void createWorkDetail(Integer workNo, List<MatCodeCountDto> matCodeCountDtos, String barcode, Long userId);
 
}