tangchuanxing_branch
CR7 10 months ago
parent 193c03408d
commit 6d65c85869

@ -0,0 +1,50 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
// 定义包名表示这个类属于com.yami.shop.service包
package com.yami.shop.service;
// 导入MyBatis Plus框架中的IService接口提供基础的CRUD操作
import com.baomidou.mybatisplus.extension.service.IService;
// 导入项目中定义的IndexImg实体类
import com.yami.shop.bean.model.IndexImg;
// 导入Java.util.List接口用于返回列表类型的数据
import java.util.List;
/**
* IndexImgService
* IndexImg
*
* @author lgh on 2018/11/26 lgh20181126
*/
public interface IndexImgService extends IService<IndexImg> {
/**
* id
* LongID
*
* @param ids ID
*/
void deleteIndexImgByIds(Long[] ids);
/**
*
* List<IndexImg>
*
* @return
*/
List<IndexImg> listIndexImg();
/**
*
*
*/
void removeIndexImgCache();
}
Loading…
Cancel
Save