自动化立体仓库 - WMS系统
zhang
9 天以前 532edf4466b91bb0432ccb6b170cc914af6be8f7
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.RequestLog;
import com.zy.asrs.mapper.RequestLogMapper;
import com.zy.asrs.service.RequestLogService;
import org.springframework.stereotype.Service;
 
@Service("requestLogService")
public class RequestLogServiceImpl extends ServiceImpl<RequestLogMapper, RequestLog> implements RequestLogService {
 
}