WechatGroup

This commit is contained in:
2025-09-22 20:48:55 +08:00
parent 4ecdf7f477
commit e08cbe45d4
3 changed files with 0 additions and 9 deletions

View File

@@ -88,9 +88,6 @@ public class AppJobController extends BaseController
public AjaxResult littleVideo(ESJobSearch esJobSearch)
{
List<ESJobDocument> jobList = jobService.littleVideo(esJobSearch);
for (ESJobDocument esJobDocument:jobList){
esJobDocument.setPostingDate(date);
}
return success(jobList);
}
@@ -99,9 +96,6 @@ public class AppJobController extends BaseController
public AjaxResult littleVideo(@RequestParam(required = true) String uuid,@RequestParam(required = false) Integer count,@RequestParam(required = false) String jobTitle)
{
List<ESJobDocument> jobList = jobService.littleVideoRandom(uuid,count,jobTitle);
for (ESJobDocument esJobDocument:jobList){
esJobDocument.setPostingDate(date);
}
return success(jobList);
}
/**