tangchuanxing_branch
CR7 9 months ago
parent e0187fce39
commit 04c811fb77

@ -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;
/**
* MapperAttachFile
*
* @author lanhai lanhai
*/
public interface AttachFileMapper extends BaseMapper<AttachFile> {
// 这个接口继承了BaseMapper接口因此已经包含了基础的CRUD操作不需要额外定义方法
}
Loading…
Cancel
Save