自动化立体仓库 - WMS系统
zhangc
2025-01-10 2b13134f6e3bd5997c0424c0ba9fd7aa460ea1d2
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.WrkLogMapper;
import com.zy.asrs.entity.WrkLog;
import com.zy.asrs.service.WrkLogService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("wrkLogService")
public class WrkLogServiceImpl extends ServiceImpl<WrkLogMapper, WrkLog> implements WrkLogService {
 
}