#
luxiaotao1123
2021-05-27 21432990c798ed5ad945e2eb2668f1ce197282cc
1
2
3
4
5
6
7
8
9
10
11
12
package zy.cloud.wms.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import zy.cloud.wms.system.entity.Api;
import zy.cloud.wms.system.mapper.ApiMapper;
import zy.cloud.wms.system.service.ApiService;
import org.springframework.stereotype.Service;
 
@Service("apiService")
public class ApiServiceImpl extends ServiceImpl<ApiMapper, Api> implements ApiService {
 
}