18 lines
578 B
Java
18 lines
578 B
Java
|
|
package com.czlis.interfaceCommon.mapper;
|
||
|
|
|
||
|
|
import com.czlis.common.core.domain.entity.lis.LabInstr;
|
||
|
|
import com.czlis.common.core.domain.entity.lis.XmInfo;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public interface LabInstrMapper {
|
||
|
|
List<LabInstr> getLabInstrAll();
|
||
|
|
List<LabInstr> getLabInstrList(LabInstr labInstr);
|
||
|
|
LabInstr getLabInstr(@Param("yq")String yq);
|
||
|
|
String getYqmc(@Param("yq")String yq);
|
||
|
|
String getYqdl(@Param("yq")String yq);
|
||
|
|
String getBgdh(@Param("yq")String yq);
|
||
|
|
String getLisgroup(@Param("yq")String yq);
|
||
|
|
}
|