|
@@ -32,11 +32,11 @@ public interface Covid19AssessmentDao {
|
|
|
"t_covid19_assessment with(nolock) where patient_id=#{patientId} order by date desc")
|
|
|
Integer selectDateDiff(@Param("patientId") String patientId);
|
|
|
|
|
|
- @Insert("insert into t_covid19_assessment (name, phone, idcard, temperature, fever_number, " +
|
|
|
- "date, item1, item2, item3, item4, item5, symptoms, addr_province, addr_city, addr_district, " +
|
|
|
+ @Insert("insert into t_covid19_assessment (name, phone, idcard, temperature, fever_number, date, item1, " +
|
|
|
+ "item2, item3, item4, item5, symptoms, item6, addr_province, addr_city, addr_district, " +
|
|
|
"addr_additional, patient_id) values " +
|
|
|
"(#{name},#{phone},#{idcard},#{temperature},#{feverNumber},#{date},#{item1}," +
|
|
|
- "#{item2},#{item3},#{item4},#{item5},#{symptomsString},#{addrProvince},#{addrCity}," +
|
|
|
+ "#{item2},#{item3},#{item4},#{item5},#{symptomsString},#{item6},#{addrProvince},#{addrCity}," +
|
|
|
"#{addrDistrict},#{addrAdditional},#{patientId})")
|
|
|
void insertNewCovid19Assessment(CovidQuestionnaire pojo);
|
|
|
}
|