16 lines
611 B
Java
16 lines
611 B
Java
|
|
package com.czlis.interfaceCommon.mapper;
|
||
|
|
|
||
|
|
import com.czlis.common.core.domain.entity.LabResult;
|
||
|
|
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);
|
||
|
|
List<LabResult> getLabResult(@Param("jyrq") Date jyrq, @Param("yq") String yq,@Param("ybh") String ybh,@Param("xmdh") String xmdh);
|
||
|
|
int insertLabResult(LabResult labResult);
|
||
|
|
int delLabResult(LabResult labResult);
|
||
|
|
int updateLabResult(LabResult labResult);
|
||
|
|
}
|