package com.glacier.frame.dao.basicdatas;
import com.glacier.frame.entity.basicdatas.Warehouse;
import com.glacier.frame.entity.basicdatas.WarehouseExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface WarehouseMapper {
int countByExample(WarehouseExample example);
int deleteByExample(WarehouseExample example);
int deleteByPrimaryKey(String warehouseId);
int insert(Warehouse record);
int insertSelective(Warehouse record);
List<Warehouse> selectByExample(WarehouseExample example);
Warehouse selectByPrimaryKey(String warehouseId);
int updateByExampleSelective(@Param("record") Warehouse record, @Param("example") WarehouseExample example);
int updateByExample(@Param("record") Warehouse record, @Param("example") WarehouseExample example);
int updateByPrimaryKeySelective(Warehouse record);
int updateByPrimaryKey(Warehouse record);
}