自动化立体仓库 - WMS系统
zhangc
2025-02-08 0379bbe120f509f8c330713958b59687d25b80b3
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 {
 
}