添加用户模块

This commit is contained in:
wcq 2023-03-14 09:37:59 +08:00
parent 0b882bdb25
commit 1825a65085
6 changed files with 8 additions and 0 deletions

View File

@ -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))

0
Mods/User/Crud.py Normal file
View File

0
Mods/User/Models.py Normal file
View File

0
Mods/User/Router.py Normal file
View File

0
Mods/User/Schemas.py Normal file
View File

View File

@ -22,6 +22,7 @@ Mods/ #业务模块
- IndepthResearch/ #深度调研 - IndepthResearch/ #深度调研
- Operation/ #经营情况 - Operation/ #经营情况
- SubjectRating/ #主体评级 - SubjectRating/ #主体评级
- User/ #用户模块
Utils/ #工具库 Utils/ #工具库
debug.py #项目开发启动入口 debug.py #项目开发启动入口
main.py #项目开发启动入口 main.py #项目开发启动入口