package com.lzl.dao;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.lzl.pojo.Shop;
public interface ShopDao {
/**
* 分页+查询
* @param page
* @param pageSize
* @return
*/
List<Shop> select();
/**
* 删除
* @param sids
* @return
*/
boolean del(@Param("sids")String sids);
/**
* 添加
* @return
*/
List<Shop> toAdd();
void add(Shop shop);
Shop selectOne(Integer sid);
void update(Shop shop);
}