feat(REQ-3300) - 移除一些无用代码

This commit is contained in:
wangli 2025-02-20 17:36:43 +08:00
parent e5ef81f459
commit 9111961327
4 changed files with 0 additions and 19 deletions

View File

@ -174,11 +174,4 @@ public interface ChangeRecordApi {
@PostMapping("/api/visa/change/list")
ApiPageResult<VisaSearchResp> list(@RequestBody @Validated VisaSearchReq req);
/**
* test
*
* @return
*/
@PostMapping("/api/test")
ApiResult<Void> test();
}

View File

@ -181,9 +181,4 @@ public class ChangeRecordController implements ChangeRecordApi {
return ApiResult.ok(changeRecordBillService.getBillIfRelated(req));
}
@Override
public ApiResult<Void> test() {
changeRecordService.test();
return ApiResult.ok();
}
}

View File

@ -145,5 +145,4 @@ public interface ChangeRecordService extends IService<ChangeRecord> {
*/
PageData<VisaSearchResp> list(VisaSearchReq req);
void test();
}

View File

@ -1921,10 +1921,4 @@ public class ChangeRecordServiceImpl extends ServiceImpl<ChangeRecordDao, Change
return visaIds;
}
@Override
public void test() {
VisaChangeApproveCreateReq createReq = buildVisaChangeApproveCreateReqByVisaId(240L);
List<Map<String, Object>> maps = buildUnitPerson(createReq.getRelationUnitAndPersonList(), createReq.getRelationWorkspaceId());
log.info("result: {}", JSON.toJSONString(maps));
}
}