查询提示信息修改

This commit is contained in:
2025-12-16 21:16:44 +08:00
parent 6324088316
commit 496b1a2852
5 changed files with 11 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ public class HotakeCvInfoController extends BaseController
public R<List<HotakeCvInfo>> getList(HotakeCvInfo hotakeCvInfo)
{
List<HotakeCvInfo> list = hotakeCvInfoService.selectHotakeCvInfoList(hotakeCvInfo);
return R.ok(list);
return R.ok(list,"");
}
/**
@@ -62,7 +62,7 @@ public class HotakeCvInfoController extends BaseController
@GetMapping(value = "/{id}")
public R<HotakeCvInfo> getInfo(@PathVariable("id") Long id)
{
return R.ok(hotakeCvInfoService.selectHotakeCvInfoById(id));
return R.ok(hotakeCvInfoService.selectHotakeCvInfoById(id),"");
}
/**

View File

@@ -48,7 +48,7 @@ public class HotakeInitScreQuestionsReplyRecordInfoController extends BaseContro
public R<List<HotakeInitScreQuestionsReplyRecordInfo>> list(HotakeInitScreQuestionsReplyRecordInfo hotakeInitScreQuestionsReplyRecordInfo)
{
List<HotakeInitScreQuestionsReplyRecordInfo> list = hotakeInitScreQuestionsReplyRecordInfoService.selectHotakeInitScreQuestionsReplyRecordInfoList(hotakeInitScreQuestionsReplyRecordInfo);
return R.ok(list);
return R.ok(list,"");
}
@@ -60,7 +60,7 @@ public class HotakeInitScreQuestionsReplyRecordInfoController extends BaseContro
@GetMapping(value = "/{id}")
public R<HotakeInitScreQuestionsReplyRecordInfo> getInfo(@PathVariable("id") Long id)
{
return R.ok(hotakeInitScreQuestionsReplyRecordInfoService.selectHotakeInitScreQuestionsReplyRecordInfoById(id));
return R.ok(hotakeInitScreQuestionsReplyRecordInfoService.selectHotakeInitScreQuestionsReplyRecordInfoById(id),"");
}
/**

View File

@@ -49,7 +49,7 @@ public class HotakeInitialScreeningQuestionsInfoController extends BaseControlle
public R<List<HotakeInitialScreeningQuestionsInfo>> list(HotakeInitialScreeningQuestionsInfo hotakeInitialScreeningQuestionsInfo)
{
List<HotakeInitialScreeningQuestionsInfo> list = hotakeInitialScreeningQuestionsInfoService.selectHotakeInitialScreeningQuestionsInfoList(hotakeInitialScreeningQuestionsInfo);
return R.ok(list);
return R.ok(list,"");
}
/**
@@ -59,7 +59,7 @@ public class HotakeInitialScreeningQuestionsInfoController extends BaseControlle
@GetMapping(value = "/{id}")
public R<HotakeInitialScreeningQuestionsInfo> getInfo(@PathVariable("id") Long id)
{
return R.ok(hotakeInitialScreeningQuestionsInfoService.selectHotakeInitialScreeningQuestionsInfoById(id));
return R.ok(hotakeInitialScreeningQuestionsInfoService.selectHotakeInitialScreeningQuestionsInfoById(id),"");
}
/**

View File

@@ -51,7 +51,7 @@ public class HotakeRolesInfoController extends BaseController
public R<List<HotakeRolesInfo>> list(HotakeRolesInfo hotakeRolesInfo)
{
List<HotakeRolesInfo> list = hotakeRolesInfoService.selectHotakeRolesInfoList(hotakeRolesInfo);
return R.ok(list);
return R.ok(list,"");
}
/**
@@ -61,7 +61,7 @@ public class HotakeRolesInfoController extends BaseController
@GetMapping(value = "/{id}")
public R<HotakeRolesInfoDto> getInfo(@PathVariable("id") Long id)
{
return R.ok(hotakeRolesInfoService.selectHotakeRolesInfoDtoById(id));
return R.ok(hotakeRolesInfoService.selectHotakeRolesInfoDtoById(id),"");
}
/**
@@ -122,7 +122,7 @@ public class HotakeRolesInfoController extends BaseController
if(CollectionUtil.isNotEmpty(list)){
id = list.get(0).getId();
}
return R.ok(hotakeRolesInfoService.selectHotakeRolesInfoDtoById(id));
return R.ok(hotakeRolesInfoService.selectHotakeRolesInfoDtoById(id),"");
}
}

View File

@@ -72,7 +72,7 @@ public class SysDictDataController extends BaseController
@GetMapping(value = "/{dictCode}")
public R<SysDictData> getInfo(@PathVariable Long dictCode)
{
return R.ok(dictDataService.selectDictDataById(dictCode));
return R.ok(dictDataService.selectDictDataById(dictCode),"");
}
/**
@@ -91,7 +91,7 @@ public class SysDictDataController extends BaseController
{
data = new ArrayList<SysDictData>();
}
return R.ok(data);
return R.ok(data,"");
}
/**