Bläddra i källkod

删除没用到的方法。

lighter 4 år sedan
förälder
incheckning
9adb7cb16e

+ 0 - 7
src/main/java/thyyxxk/wxservice_server/dao/CovidVaccinateAppointmentDao.java

@@ -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);