kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
src/main/java/com/nanometer/smartlab/dao/DangerousEncodeMapper.java
@@ -1,12 +1,14 @@
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(String id);
    int deleteByPrimaryKey(Long id);
    int insert(DangerousEncode record);
@@ -23,4 +25,12 @@
    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<DangerousEncode> selectByReagentName(@Param("reagentname") String reagentname, @Param("cas") String cas);
    DangerousEncode selectByName(@Param("reagentname") String reagentname);
    DangerousEncode selectById(@Param("id") Long id);
}