cloudroam
2025-05-26 056bdbd515515e348e519f991444154512907392
1
2
3
4
5
6
7
8
9
10
package com.mzl.flower.mapper.system;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mzl.flower.entity.system.Employee;
import org.springframework.stereotype.Repository;
 
 
@Repository
public interface EmployeeMapper extends BaseMapper<Employee> {
}