add:统计分析

This commit is contained in:
zhangzhiqiang
2023-10-07 09:58:37 +08:00
parent acd4fe5a48
commit d20e5f8282
4 changed files with 29 additions and 32 deletions

View File

@@ -40,8 +40,8 @@ public class StIvtStructivtDailyController {
@PostMapping("/sync")
@Log("同步日库区")
@SaIgnore
public ResponseEntity<Object> sync(@RequestBody String[] structivts){
stIvtStructivtDailyService.dailyStructivt(structivts);
public ResponseEntity<Object> sync(@RequestBody String[] ids){
stIvtStructivtDailyService.dailyStructivt(ids);
return new ResponseEntity<>(HttpStatus.OK);
}