自动化立体仓库 - WMS系统
1
zhang
2025-07-06 e57e89707d57d0af0ff8ed9f470f7450105ed4c0
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.FlowLogMapper;
import com.zy.asrs.entity.FlowLog;
import com.zy.asrs.service.FlowLogService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("flowLogService")
public class FlowLogServiceImpl extends ServiceImpl<FlowLogMapper, FlowLog> implements FlowLogService {
 
}