14 lines
334 B
Java
14 lines
334 B
Java
|
package com.isu.gaswellwatch.dao;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.isu.gaswellwatch.entity.UserDepartment;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.springframework.stereotype.Repository;
|
||
|
|
||
|
@Mapper
|
||
|
@Repository
|
||
|
public interface UserDepartmentDao extends BaseMapper<UserDepartment> {
|
||
|
|
||
|
}
|
||
|
|