2025-06-24 18:01:25 +08:00
|
|
|
package com.czlis.interfaceCommon.mapper;
|
|
|
|
|
|
|
|
|
|
import com.czlis.common.core.domain.entity.LabPat;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public interface LabPatMapper {
|
2025-07-01 11:52:54 +08:00
|
|
|
List<LabPat> getLabPatList(String sqh);
|
2025-06-24 18:01:25 +08:00
|
|
|
LabPat getLabPatOne(Date jyrq, String yq,String ybh);
|
2025-07-01 11:52:54 +08:00
|
|
|
void insertLabPat(LabPat labPat);
|
2025-06-24 18:01:25 +08:00
|
|
|
}
|