苍穹外卖--springCache-@CachePut使用

This commit is contained in:
2025-11-24 11:14:30 +08:00
parent 2132000c93
commit 35e93d1449
8 changed files with 280 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` bigint NOT NULL AUTO_INCREMENT,
`name` varchar(45) DEFAULT NULL,
`age` int DEFAULT NULL,
PRIMARY KEY (`id`)
);