diff --git a/Mods/EditRecord/Models.py b/Mods/EditRecord/Models.py index e69de29..052a32d 100644 --- a/Mods/EditRecord/Models.py +++ b/Mods/EditRecord/Models.py @@ -0,0 +1,7 @@ +from Utils.SqlAlchemyUtils import Base +from sqlalchemy import Column, Integer, String + + +class EditRecord(Base): + id = Column(Integer, primary_key=True) + user = Column(String(255)) diff --git a/Mods/User/Crud.py b/Mods/User/Crud.py new file mode 100644 index 0000000..e69de29 diff --git a/Mods/User/Models.py b/Mods/User/Models.py new file mode 100644 index 0000000..e69de29 diff --git a/Mods/User/Router.py b/Mods/User/Router.py new file mode 100644 index 0000000..e69de29 diff --git a/Mods/User/Schemas.py b/Mods/User/Schemas.py new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index 91c85a7..64a8684 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Mods/ #业务模块 - IndepthResearch/ #深度调研 - Operation/ #经营情况 - SubjectRating/ #主体评级 + - User/ #用户模块 Utils/ #工具库 debug.py #项目开发启动入口 main.py #项目开发启动入口