add
gdg
2021-01-06 512306b8aaee5c3f33690cb0a6af5bc7c1b9c087
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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<HazardousWaste> selectAll(Map params);
 
    int countAll(Map params);
}