|
@@ -65,4 +65,14 @@ public interface YpManuBarCodeMapper {
|
|
|
@Update(" update yp_manu_bar_code set manu_no = #{manuNo} where in_docu_no = #{inDocuNo} and charge_code = #{chargeCode} ")
|
|
|
int updateYpManuBarInfoByInDocuNo(@Param("inDocuNo") String inDocuNo, @Param("chargeCode") String chargeCode, @Param("manuNo") String manuNo);
|
|
|
|
|
|
+ /**
|
|
|
+ * @Description 根据关键字查询追溯码
|
|
|
+ * @Author hsh
|
|
|
+ * @param inDocuNo 药单号 chargeCode 药品编码 manuNo 生产批号
|
|
|
+ * @return
|
|
|
+ * @Date 2025/4/7 0007 9:42
|
|
|
+ */
|
|
|
+ @Select(" select * from yp_manu_bar_code where in_docu_no = #{inDocuNo} and charge_code = #{chargeCode} and manu_no = #{manuNo} ")
|
|
|
+ YpManuBarCode selectYpManuBarInfoByCode(@Param("inDocuNo") String inDocuNo, @Param("chargeCode") String chargeCode, @Param("manuNo") String manuNo);
|
|
|
+
|
|
|
}
|