zss
2024-08-04 76c806e5ca84d7411b67ee3d6047cfc1454da8f1
1
2
3
4
5
6
7
8
9
10
11
12
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.pojo.Departments;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface DepartmentsMapper extends BaseMapper<Departments> {
 
}