feat(REQ-3300) - 移除一些无用代码
This commit is contained in:
parent
e5ef81f459
commit
9111961327
@ -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();
|
||||
}
|
||||
|
||||
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@ -145,5 +145,4 @@ public interface ChangeRecordService extends IService<ChangeRecord> {
|
||||
*/
|
||||
PageData<VisaSearchResp> list(VisaSearchReq req);
|
||||
|
||||
void test();
|
||||
}
|
||||
|
||||
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user