Commit e07ffe97f079f170e49d6af71c503b1db93b3da2
1 parent
186d0a2950
Exists in
master
and in
6 other branches
add log4j async flush disk
Showing 1 changed file with 6 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyEarFacade.java
View file @
e07ffe9
... | ... | @@ -27,6 +27,7 @@ |
27 | 27 | import org.slf4j.Logger; |
28 | 28 | import org.slf4j.LoggerFactory; |
29 | 29 | import org.springframework.beans.factory.annotation.Autowired; |
30 | +import org.springframework.stereotype.Component; | |
30 | 31 | |
31 | 32 | import java.util.Date; |
32 | 33 | import java.util.HashMap; |
... | ... | @@ -47,6 +48,7 @@ |
47 | 48 | * @version BME V100R001 2017-05-17 15:57 |
48 | 49 | * @since BME V100R001C40B104 |
49 | 50 | */ |
51 | +@Component | |
50 | 52 | public class BabyEarFacade |
51 | 53 | { |
52 | 54 | |
53 | 55 | |
... | ... | @@ -182,11 +184,14 @@ |
182 | 184 | * 查看儿童听筛建档 |
183 | 185 | * @param babyId |
184 | 186 | */ |
185 | - public void findBabyEarById(String babyId){ | |
187 | + public BaseResponse findBabyEarById(String babyId){ | |
188 | + BaseObjectResponse objectResponse = new BaseObjectResponse(); | |
186 | 189 | BabyModel babyModel = babyService.getOneBabyById(babyId); |
187 | 190 | if(null!=babyModel){ |
188 | 191 | |
189 | 192 | } |
193 | + | |
194 | + return objectResponse; | |
190 | 195 | } |
191 | 196 | |
192 | 197 |