| | |
| | | package com.nanometer.smartlab.dao; |
| | | |
| | | import com.nanometer.smartlab.entity.OpeUseFlow; |
| | | import com.nanometer.smartlab.entity.dto.PersonUseDetail; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.dao.DataAccessException; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | int updateTimeByCode(Map params); |
| | | |
| | | OpeUseFlow getOpeUseFlowByCode(@Param("reagentCode") String reagentCode); |
| | | |
| | | void updateReceiptNumber(String code, String receiptNumber); |
| | | |
| | | List<Map> getRegentInfoFromReceiptNumber(String receiptNumber); |
| | | |
| | | Map getUserIdByReagentCode(String reagentCode, String id); |
| | | |
| | | int countPersonalUseInfo(Map params); |
| | | |
| | | List<OpeUseFlow> selectPersonalUseInfo(Map params); |
| | | |
| | | List<PersonUseDetail> getApplyInfo(Map params); |
| | | |
| | | int getApplyInfoSize(Map params); |
| | | |
| | | int countOpeUseFlow(OpeUseFlow opeUseFlow); |
| | | |
| | | OpeUseFlow selectById(@Param("id") String id); |
| | | |
| | | OpeUseFlow selectByReceiptNumber(Map params); |
| | | |
| | | List<Map> selectAll(Map params); |
| | | } |