sean.zhou
2022-07-25 ab94f7049ca73d29476cec1895e90e1a52fc9a2d
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> {
 
}