|
@ -70,7 +70,7 @@ public class ApiWorkUserController { |
|
|
* @return |
|
|
* @return |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("residentDetail") |
|
|
@GetMapping("residentDetail") |
|
|
public Result<EpdcResidentDetailResultDTO> residentDetail(@RequestBody EpdcResidentDetailFormDTO formDto) { |
|
|
public Result<EpdcResidentDetailResultDTO> residentDetail(EpdcResidentDetailFormDTO formDto) { |
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
return workUserService.residentDetail(formDto); |
|
|
return workUserService.residentDetail(formDto); |
|
|
} |
|
|
} |
|
@ -142,7 +142,7 @@ public class ApiWorkUserController { |
|
|
* @Date 2019/11/22 13:16 |
|
|
* @Date 2019/11/22 13:16 |
|
|
**/ |
|
|
**/ |
|
|
@GetMapping("authenticateHistory") |
|
|
@GetMapping("authenticateHistory") |
|
|
public Result<List<EpdcAuthenticateHistoryResultDTO>> authenticateHistory(@RequestBody EpdcAuthenticateHistoryFormDTO formDTO) { |
|
|
public Result<List<EpdcAuthenticateHistoryResultDTO>> authenticateHistory(EpdcAuthenticateHistoryFormDTO formDTO) { |
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
return workUserService.authenticateHistory(formDTO); |
|
|
return workUserService.authenticateHistory(formDTO); |
|
|
} |
|
|
} |
|
|