图像模型

This commit is contained in:
spllzh
2025-10-15 09:22:08 +08:00
parent 71c0a04b53
commit abd370beb5
23 changed files with 1613 additions and 22 deletions

View File

@@ -0,0 +1,24 @@
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> {
}