mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-21 22:09:35 +08:00
16 lines
336 B
Java
16 lines
336 B
Java
package com.ics.admin.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ics.admin.domain.BuildingDetail;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 楼层管理Mapper接口
|
|
*
|
|
* @author zzm
|
|
* @date 2021-03-24
|
|
*/
|
|
@Mapper
|
|
public interface BuildingDetailMapper extends BaseMapper<BuildingDetail> {
|
|
|
|
} |