|
@@ -52,3 +52,52 @@ class ChemicalCompany(Base):
|
|
|
|
|
|
class Config:
|
|
|
orm_mode = True
|
|
|
+
|
|
|
+
|
|
|
+# 建筑工程信息表
|
|
|
+class BuildingProjectInfo(Base):
|
|
|
+ __tablename__ = 'building_project_info'
|
|
|
+
|
|
|
+ id = Column(BigInteger, primary_key=True,autoincrement=True, comment='主键')
|
|
|
+ prjcode = Column(String, default='', comment='项目编号')
|
|
|
+ prjname = Column(String, default='', comment='项目名称')
|
|
|
+ prjnum = Column(String, default='', comment='投资项目在线审批监管平台统一项目代码')
|
|
|
+ letternum = Column(String, default='', comment='立项文号')
|
|
|
+ prjlevel = Column(String, default='', comment='立项级别')
|
|
|
+ issueby = Column(String, default='', comment='立项批复机关')
|
|
|
+ dtissue = Column(DateTime, comment='立项批复时间')
|
|
|
+ prjtypename = Column(String, default='', comment='项目类型')
|
|
|
+ cityid = Column(String, default='', comment='项目所在地区编码(地市)')
|
|
|
+ cityname = Column(String, default='', comment='项目所在地区名称(地市)')
|
|
|
+ countyid = Column(Integer, comment='项目所在地区编码(县区)')
|
|
|
+ countyname = Column(String, default='', comment='项目所在地区名称(县区)')
|
|
|
+ address = Column(String, default='', comment='项目地址')
|
|
|
+ longitude = Column(Float, comment='经度')
|
|
|
+ latitude = Column(String, comment='纬度')
|
|
|
+ prjsizedes = Column(String, default='', comment='建设规模')
|
|
|
+ allinvest = Column(Float, default='', comment='总投资(万元)')
|
|
|
+ allarea = Column(Float, comment='总面积(平方米)')
|
|
|
+ alllength = Column(Float, comment='总长度(米)')
|
|
|
+ allspan = Column(Float, comment='总跨度(米)')
|
|
|
+ prjpropertyname = Column(String, default='', comment='建设性质')
|
|
|
+ prjusefor = Column(String, default='', comment='工程用途')
|
|
|
+ dtplans = Column(DateTime, comment='计划开工日期')
|
|
|
+ dtplane = Column(DateTime, comment='计划竣工日期')
|
|
|
+ ownername = Column(String, default='', comment='建设单位')
|
|
|
+ ownerid = Column(String, default='', comment='建设单位统一信用代码(或个人身份证号码)')
|
|
|
+ zjlygjzfczzjtz = Column(Float, comment='资金来源-各级政府财政资金投资')
|
|
|
+ zjlygyqyzjtz = Column(Float, comment='资金来源-国有企业资金投资')
|
|
|
+ zjlygjrz = Column(Float, comment='资金来源-国家融资')
|
|
|
+ zjlysygjzzhzwgzfzj = Column(Float, comment='资金来源-使用国际组织或外国政府资金')
|
|
|
+ zjlyjtjjzztz = Column(Float, comment='资金来源-集体经济组织投资')
|
|
|
+ zjlywstz = Column(Float, comment='资金来源-外商(国)投资')
|
|
|
+ zjlyggttz = Column(Float, comment='资金来源-港澳台投资')
|
|
|
+ zjlysytz = Column(Float, comment='资金来源-私(民)营投资')
|
|
|
+ zjlyqtzjly = Column(Float, comment='资金来源-其他资金来源')
|
|
|
+ add_time = Column(DateTime, comment='新增时间')
|
|
|
+ cd_time = Column(DateTime, comment='增量时间')
|
|
|
+ cd_operation = Column(String, default='', comment='增量标识')
|
|
|
+ cd_batch = Column(String, default='', comment='批次号')
|
|
|
+ sign = Column(String, server_default='', default='', comment='HMACSM3数值')
|
|
|
+ class Config:
|
|
|
+ orm_mode = True
|