Crunchy
2024-07-03 b03b37e1d649631e31f33704a49a46f05aa7dc9f
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> {
 
}