sean.zhou
2022-09-26 a2d31fcd9d5fb0ffc8055bccc54a5357b9f89067
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> {
 
}