czt
2025-12-03 7b7a08e33a029cb0df2bf48d7c4d524c18d051f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.fzzy.igds.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.fzzy.igds.domain.DeviceIot;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/11/28 10:48
 */
@Mapper
public interface DeviceIotMapper extends BaseMapper<DeviceIot> {
 
}