添加区域经济路由

This commit is contained in:
wcq 2023-03-22 10:30:13 +08:00
parent 1ec16747d2
commit 86ad9448e1
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ class AreaMajorProject(common_db.Base):
id = Column(Integer, primary_key=True) id = Column(Integer, primary_key=True)
area_id = Column(Integer, comment="区域ID") area_id = Column(Integer, comment="区域ID")
year = Column(Integer, comment="统计时间") year = Column(Integer, comment="统计时间")
project_name = Column(String, comment="项目名称") project_name = Column(String(255), comment="项目名称")
project_status = Column(String, comment="项目状态") project_status = Column(String(255), comment="项目状态")
describe = Column(Text, comment="描述") describe = Column(Text, comment="描述")
def to_dict(self): def to_dict(self):