xieb
2024-04-25 41dc2ca8393e40e9efb8a6bf05f2ab1400d80215
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dji.sample.manage.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dji.sample.manage.model.entity.DeviceEntity;
 
/**
 *
 * @author sean.zhou
 * @date 2021/11/10
 * @version 0.1
 */
public interface IDeviceMapper extends BaseMapper<DeviceEntity> {
 
}