店员,商品导入,sql

This commit is contained in:
chc
2022-09-01 18:53:12 +08:00
parent b873ec2095
commit 2648a0b57e
7 changed files with 299 additions and 14 deletions

View File

@@ -126,4 +126,11 @@ public class StoreManagerController {
}
return ResultUtil.data(null);
}
@ApiOperation(value = "将所有店铺导入店员表")
@PostMapping("store/to/clerk")
public ResultMessage<Object> storeToClerk(){
this.storeService.storeToClerk();
return ResultUtil.success();
}
}