调整数据库为wzxphoto

This commit is contained in:
2024-05-27 16:53:24 +08:00
parent 8f89fe50df
commit 48cede5427
6 changed files with 43 additions and 18 deletions

View File

@@ -10,6 +10,7 @@ class ZxIeDischarge(Base):
pk_ie_discharge = Column(INTEGER(11), primary_key=True, comment='出院记录信息抽取主键')
pk_phhd = Column(INTEGER(11), nullable=False, unique=True, comment='报销案子主键')
content = Column(String(5000), comment='详细内容')
hospital = Column(String(255), comment='医院')
pk_yljg = Column(INTEGER(11), comment='医院主键')
department = Column(String(255), comment='科别')
@@ -20,7 +21,7 @@ class ZxIeDischarge(Base):
discharge_date_str = Column(String(255), comment='出院日期字符串')
discharge_date = Column(Date, comment='出院日期')
doctor = Column(String(30), comment='主治医师')
createtime = Column(DateTime, comment='创建时间')
create_time = Column(DateTime, comment='创建时间')
creator = Column(String(255), comment='创建人')
modifiedtime = Column(DateTime, comment='修改时间')
modifier = Column(String(255), comment='修改人')
update_time = Column(DateTime, comment='修改时间')
updater = Column(String(255), comment='修改人')