wl
2022-10-09 0a71b2c8ea2e8ca9969111187e66260ce518b7b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.service.depart.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ycl.entity.depart.DepartManager;
import com.ycl.mapper.depart.DepartManagerMapper;
import com.ycl.service.depart.IDepartManagerService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 *  服务实现类
 * </p>
 *
 * @author zhanghua
 * @since 2022-10-09
 */
@Service
public class DepartManagerServiceImpl extends ServiceImpl<DepartManagerMapper, DepartManager> implements IDepartManagerService {
 
}