| 12345678910111213141516171819202122232425262728293031323334 |
- package com.izouma.awesomeadmin.dao;
- import com.izouma.awesomeadmin.model.ProductImage;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- import java.util.Map;
- /**
- * Dao接口
- */
- @Repository("com.zoumaframe.dao.ProductImageMapper")
- public interface ProductImageMapper{
- int deleteByPrimaryKey(Integer id);
- int insertSelective(ProductImage record);
- ProductImage selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(ProductImage record);
- List<ProductImage> queryAllProductImage(ProductImage record);
- List<ProductImage> queryProductImageByPage(Map<String, Object> parameter);
- int delete(String id);
- ProductImage queryProductImage(ProductImage record);
- List<ProductImage> query(ProductImage record);
- }
|