Seata 整合学习完成

This commit is contained in:
2023-08-18 23:43:35 +08:00
parent 2ee2961731
commit 401f58e46f
26 changed files with 178 additions and 110 deletions

View File

@@ -14,4 +14,5 @@ public class Book {
int bid;
String title;
String des;
int count;
}

View File

@@ -14,18 +14,13 @@ public class User {
int uid;
String name;
String sex;
int book_count;
/**
* ClassName: Book
* Package: com.test.entity
*
* @author yovinchen
* @Create 2023/8/14 17:01
*/
@Data
public static class Book {
int bid;
String title;
String desc;
int book_count;
}
}