| | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ltkj.hosp.domain.DictZhengzhuang; |
| | | import com.ltkj.hosp.domain.TjAskMedicalHistory; |
| | | import com.ltkj.hosp.domain.TjAskHistorys; |
| | | import com.ltkj.hosp.domain.TjCatering; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.Update; |
| | | |
| | | /** |
| | |
| | | " a.cus_id=#{cusId} \n" + |
| | | "AND ISNULL(a.tj_num)") |
| | | boolean updateTjAskMedicalHistoryByCusId(@Param("tjNum") String tjNum,@Param("userName") String userName,@Param("userId") String userId,@Param("cusId") String cusId); |
| | | |
| | | |
| | | |
| | | @Select("SELECT * FROM dict_zhengzhuang") |
| | | List<DictZhengzhuang> getZhengZhuang(); |
| | | |
| | | |
| | | |
| | | // @Select("SELECT * FROM tj_ask_medical_history a WHERE a.deleted=0 AND a.tj_num=#{tjNum}") |
| | | TjAskMedicalHistory selectTjAskMedicalHistoryByTjNum(String tjNum); |
| | | |
| | | } |