Files
smartDriveEE/src/main/java/com/rj/mapper/ImageModelMapper.java
2025-10-15 09:22:08 +08:00

25 lines
566 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.ImageModel;
import org.apache.ibatis.annotations.Mapper;
/**
* 图像模型Mapper接口
*
* 继承MyBatis-Plus的BaseMapper提供基础的CRUD操作。
* 该接口负责与image_model表进行数据交互包括
* - 基础的增删改查操作
* - 分页查询
* - 条件查询
* - 批量操作等
*
* @author 系统生成
* @date 2025/1/30
* @version 1.0
*/
@Mapper
public interface ImageModelMapper extends BaseMapper<ImageModel> {
}