| | |
| | | import com.smartor.domain.PatMedInhospVO; |
| | | import com.smartor.domain.PatMedReq; |
| | | import com.smartor.service.IPatMedInhospService; |
| | | import com.smartor.service.IPatMedOuthospService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | public class PatMedInhospController extends BaseController { |
| | | @Autowired |
| | | private IPatMedInhospService patMedInhospService; |
| | | |
| | | @Autowired |
| | | private IPatMedOuthospService iPatMedOuthospService; |
| | | |
| | | @Value("${visitHosp}") |
| | | private Integer visitHosp; |
| | | |
| | | |
| | | /** |
| | | * 查询患者住院记录列表 |
| | |
| | | // @GetMapping("/test") |
| | | // public void test() { |
| | | // patMedInhospService.dealOutHospInfo(); |
| | | // |
| | | // //门诊表 |
| | | // if (visitHosp != 1) { |
| | | // iPatMedOuthospService.dealOutpatientInfo(); |
| | | // } |
| | | // } |
| | | |
| | | } |