sean.zhou
2022-09-26 a2d31fcd9d5fb0ffc8055bccc54a5357b9f89067
1
2
3
4
5
6
7
8
9
10
11
12
package com.dji.sample.manage.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dji.sample.manage.model.entity.DeviceLogsEntity;
 
/**
 * @author sean
 * @version 1.2
 * @date 2022/9/7
 */
public interface IDeviceLogsMapper extends BaseMapper<DeviceLogsEntity> {
}