2025-07-04 00:22:41 +08:00
|
|
|
package com.czlis.interfaceCommon.mapper;
|
|
|
|
|
|
2025-08-07 10:50:59 +08:00
|
|
|
import com.czlis.common.core.domain.entity.lis.LabResult;
|
2025-07-04 00:22:41 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public interface LabResultMapper {
|
|
|
|
|
List<LabResult> getLabResultList(@Param("jyrq") Date jyrq, @Param("yq") String yq, @Param("ybh") String ybh);
|
2025-08-13 10:46:10 +08:00
|
|
|
LabResult getLabResult(@Param("jyrq") Date jyrq, @Param("yq") String yq,@Param("ybh") String ybh,@Param("xmdh") String xmdh);
|
2025-07-04 00:22:41 +08:00
|
|
|
int insertLabResult(LabResult labResult);
|
|
|
|
|
int delLabResult(LabResult labResult);
|
2025-10-17 18:25:22 +08:00
|
|
|
int delLabResultAll(@Param("jyrq") Date jyrq, @Param("yq") String yq,@Param("ybh") String ybh);
|
2025-07-04 00:22:41 +08:00
|
|
|
int updateLabResult(LabResult labResult);
|
2025-08-18 19:12:19 +08:00
|
|
|
int delNullLabResult(@Param("jyrq") Date jyrq, @Param("yq") String yq, @Param("ybh") String ybh);
|
2025-09-02 17:47:53 +08:00
|
|
|
List<LabResult> getLabResultWithSql(@Param("jyrq") Date jyrq, @Param("yq") String yq, @Param("ybh") String ybh,@Param("wheresql") String wheresql);
|
2025-10-23 20:34:07 +08:00
|
|
|
int insertLabResultByBarcode(@Param("jyrq") Date jyrq, @Param("yq") String yq,@Param("ybh") String ybh,@Param("sqh") String sqh);
|
2025-10-29 17:59:05 +08:00
|
|
|
int updateLabResultText(LabResult labResult);
|
2025-07-04 00:22:41 +08:00
|
|
|
}
|