package com.nanometer.smartlab.dao;
|
|
import com.nanometer.smartlab.entity.OpeApply;
|
import com.nanometer.smartlab.entity.OpeReagentStatus;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.dao.DataAccessException;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* Created by maweiqing on 17/12/8.
|
*/
|
public interface OpeReagentStatusDao {
|
|
@SuppressWarnings("rawtypes")
|
List<OpeReagentStatus> getOpeReagentStatusList(Map params) throws DataAccessException;
|
@SuppressWarnings("rawtypes")
|
int getOpeReagentStatusTotalCount(Map params) throws DataAccessException;
|
|
@SuppressWarnings("rawtypes")
|
List<OpeReagentStatus> getOpeReagentStatusListForLab(Map params) throws DataAccessException;
|
@SuppressWarnings("rawtypes")
|
int getOpeReagentStatusTotalCountForLab(Map params) throws DataAccessException;
|
|
@SuppressWarnings("rawtypes")
|
int getPersonReagentStatusTotalCount(Map params) throws DataAccessException;
|
@SuppressWarnings("rawtypes")
|
List<OpeReagentStatus> getPersonReagentStatusList(Map params) throws DataAccessException;
|
|
|
void insertOpeReagentStatus(OpeReagentStatus opeReagentStatus) throws DataAccessException;
|
OpeReagentStatus getOpeReagentStatusByReagentCode(String reagentCode) throws DataAccessException;
|
OpeReagentStatus getOpeReagentStatusByReagentCode2(OpeReagentStatus opeReagentStatus) throws DataAccessException;
|
OpeReagentStatus getOpeReagentStatus(String id) throws DataAccessException;
|
int updateOpeReagentStatusDao(OpeReagentStatus opeReagentStatus);
|
|
List<OpeReagentStatus> getOpeReagentStatusInfoList(Map params) throws DataAccessException;
|
|
void syncOpeReagentStatus(Map params) throws DataAccessException;
|
|
int updateOpeReagentStatusForInterface(OpeReagentStatus opeReagentStatus);
|
|
void deleteByReagentCode(@Param("reagentCode")String reagentCode);
|
|
List<OpeReagentStatus> getReagentStatusByContainerId(@Param("containerId") String id);
|
int updateTimeByCode(Map params);
|
void updateStatusByCode(Map params);
|
|
List<OpeReagentStatus> selectByReId(String id);
|
public int updateByReId(Map params);
|
|
List<String> selectReagentCodesByReId(String reagentId);
|
}
|