|
@@ -4,7 +4,6 @@ import org.apache.ibatis.annotations.*;
|
|
|
import thyyxxk.wxservice_server.entity.PureCodeName;
|
|
|
import thyyxxk.wxservice_server.entity.covidvaccinate.CovidVaccinate;
|
|
|
import thyyxxk.wxservice_server.entity.covidvaccinate.ZdCovidVaccinate;
|
|
|
-import thyyxxk.wxservice_server.entity.covidvaccinate.ZdVaccinateFactory;
|
|
|
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
@@ -23,12 +22,6 @@ public interface CovidVaccinateAppointmentDao {
|
|
|
"where enable_flag=1")
|
|
|
List<ZdCovidVaccinate> selectVaccinates();
|
|
|
|
|
|
- @Select("select * from t_zd_covid_vaccinate where id=#{id}")
|
|
|
- ZdCovidVaccinate selectVaccinatesById(@Param("id") Integer id);
|
|
|
-
|
|
|
- @Select("select * from t_covid_vaccinate_factory where vaccinate_id=#{id} and enable_flag=1")
|
|
|
- List<ZdVaccinateFactory> selectFactories(@Param("id") Integer id);
|
|
|
-
|
|
|
@Select("select top 1 name,phone,social_no from t_wechat_patient_bind where patient_id=#{patientId}")
|
|
|
CovidVaccinate selectPatientInfo(@Param("patientId") String patientId);
|
|
|
|