李宇
2021-06-25 b48666e1f30b3334726d218d6b05d1228a307fd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.DangerousEncode;
import com.nanometer.smartlab.entity.DangerousEncodeVo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
public interface DangerousEncodeMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(DangerousEncode record);
 
    int insertSelective(DangerousEncode record);
 
    DangerousEncode selectByPrimaryKey(String id);
 
    int updateByPrimaryKeySelective(DangerousEncode record);
 
    int updateByPrimaryKey(DangerousEncode record);
 
    List<DangerousEncode> selectAll(Map params);
 
    int countAll(Map params);
 
    List<Map> selectExportList(Map params);
 
    List<DangerousEncode> selectByCodeAndName(@Param("reagentcode") String reagentcode,@Param("reagentname") String reagentname,@Param("cas") String cas,@Param("code") String code);
 
    List<DangerousEncodeVo> selectByReagentName(@Param("reagentname") String reagentname, @Param("cas") String cas);
 
    DangerousEncode selectByName(@Param("reagentname") String reagentname);
 
    DangerousEncode selectById(@Param("id") Long id);
}