#
luxiaotao1123
2024-02-21 b8b233a92c3960baae520379074f3c2fb0d00b7f
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.wcs.system.service.impl;
 
import com.zy.asrs.wcs.system.mapper.DeptMapper;
import com.zy.asrs.wcs.system.entity.Dept;
import com.zy.asrs.wcs.system.service.DeptService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("deptService")
public class DeptServiceImpl extends ServiceImpl<DeptMapper, Dept> implements DeptService {
 
}