aix
2024-08-13 b10d4680e1f0c9b992ab2ad86c7d19a19206f144
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dji.sample.manage.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dji.sample.manage.model.entity.DeviceEntity;
import org.apache.ibatis.annotations.Mapper;
 
/**
 *
 * @author sean.zhou
 * @date 2021/11/10
 * @version 0.1
 */
@Mapper
public interface IDeviceMapper extends BaseMapper<DeviceEntity> {
 
}