Commit 3ab0c163102dca162831849677093ccf9523c96b

Authored by liquanyu
1 parent 38f4ffb355

产筛

Showing 1 changed file with 14 additions and 14 deletions

platform-operate-api/src/main/java/com/lyms/hospitalapi/zcfy/ZcPrenatalService.java View file @ 3ab0c16
... ... @@ -31,8 +31,8 @@
31 31 private PatientsService patientsService;
32 32 @Autowired
33 33 private ViewFacade viewFacade;
34   - @Autowired
35   - private BaseMongoDAO baseMongoDAO;
  34 +// @Autowired
  35 +// private BaseMongoDAO baseMongoDAO;
36 36  
37 37 //初诊
38 38 public BaseObjectResponse saveAntexChu(AntExChuModel antExChuModel) {
... ... @@ -951,18 +951,18 @@
951 951 * @param endDate
952 952 * @return
953 953 */
954   - public BaseObjectResponse saveChuZhen(String startDate,String endDate){
955   - Criteria criteria = Criteria.where("created").gte(startDate).lte(endDate);
956   - Query query = new Query(criteria);
957   - List<AntExChuModel> list = baseMongoDAO.find(query);
958   - if(list != null && list.size()>0){
959   - for(AntExChuModel antExChuModel : list){
960   - System.out.print(antExChuModel.getId());
961   - }
962   - }
963   -
964   - return null;
965   - }
  954 +// public BaseObjectResponse saveChuZhen(String startDate,String endDate){
  955 +// Criteria criteria = Criteria.where("created").gte(startDate).lte(endDate);
  956 +// Query query = new Query(criteria);
  957 +// List<AntExChuModel> list = baseMongoDAO.find(query);
  958 +// if(list != null && list.size()>0){
  959 +// for(AntExChuModel antExChuModel : list){
  960 +// System.out.print(antExChuModel.getId());
  961 +// }
  962 +// }
  963 +//
  964 +// return null;
  965 +// }
966 966  
967 967  
968 968 }