You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
323 B
17 lines
323 B
1 day ago
|
package com.wrj.driver.server.mapper;
|
||
|
|
||
|
import com.wrj.driver.server.entity.WrjModel;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 无人机机型表 Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Automated procedures
|
||
|
* @since 2025-06-29
|
||
|
*/
|
||
|
public interface WrjModelMapper extends BaseMapper<WrjModel> {
|
||
|
|
||
|
}
|