|
|
|
@ -0,0 +1,26 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* https://www.mall4j.com/
|
|
|
|
|
*
|
|
|
|
|
* 未经允许,不可做商业用途!
|
|
|
|
|
*
|
|
|
|
|
* 版权所有,侵权必究!
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// 定义了一个名为com.yami.shop.dao的包,用于组织代码
|
|
|
|
|
package com.yami.shop.dao;
|
|
|
|
|
|
|
|
|
|
// 导入了MyBatis Plus框架中的BaseMapper接口,用于提供基础的CRUD操作
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
// 导入了AttachFile实体类,这个类代表了数据库中的一个表
|
|
|
|
|
import com.yami.shop.bean.model.AttachFile;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 这是一个Mapper接口,用于定义与AttachFile实体相关的数据库操作。
|
|
|
|
|
*
|
|
|
|
|
* @author lanhai 表示这个接口的作者是lanhai。
|
|
|
|
|
*/
|
|
|
|
|
public interface AttachFileMapper extends BaseMapper<AttachFile> {
|
|
|
|
|
// 这个接口继承了BaseMapper接口,因此已经包含了基础的CRUD操作,不需要额外定义方法
|
|
|
|
|
}
|