自动化立体仓库 - WMS系统
#
zjj
2025-09-17 4474cf3c30e6ad06711d2021be15ff82c36bd75a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service.impl;
 
import com.baomidou.dynamic.datasource.annotation.DS;
import com.zy.asrs.mapper.DepartmentMapper;
import com.zy.asrs.entity.Department;
import com.zy.asrs.service.DepartmentService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("departmentService")
@DS("slave_1")
public class DepartmentServiceImpl extends ServiceImpl<DepartmentMapper, Department> implements DepartmentService {
 
}