tangchuanxing_branch
CR7 9 months ago
parent 6d65c85869
commit 0f71af50d1

@ -0,0 +1,37 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
package com.yami.shop.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yami.shop.bean.model.IndexImg;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* IndexImgMapper 访IndexImg
* MyBatis-PlusBaseMapperCRUD
* @author lanhai
*/
public interface IndexImgMapper extends BaseMapper<IndexImg> {
/**
* deleteIndexImgByIds ID
* @param ids ID
*/
void deleteIndexImgByIds(@Param("ids") Long[] ids);
/**
* listIndexImg
* @return IndexImg
*/
List<IndexImg> listIndexImg();
}
Loading…
Cancel
Save