package com.nanometer.smartlab.dao; import com.nanometer.smartlab.entity.HazardousWaste; import java.util.*; public interface HazardousWasteMapper { int deleteByPrimaryKey(Long id); int insert(HazardousWaste record); int insertSelective(HazardousWaste record); HazardousWaste selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(HazardousWaste record); int updateByPrimaryKey(HazardousWaste record); List selectAll(Map params); int countAll(Map params); }