添加医保类型的区分

This commit is contained in:
2024-07-09 14:13:32 +08:00
parent 89de0e0815
commit 835cb78e57
3 changed files with 34 additions and 11 deletions

View File

@@ -23,7 +23,8 @@ class ZxIeSettlement(Base):
personal_account_payment = Column(DECIMAL(18, 2), comment='个人账户支付')
personal_funded_amount_str = Column(String(255), comment='自费金额字符串')
personal_funded_amount = Column(DECIMAL(18, 2), comment='自费金额')
medical_insurance_type = Column(String(255), comment='医保类型')
medical_insurance_type_str = Column(String(255), comment='医保类型字符串')
medical_insurance_type = Column(String(40), comment='医保类型')
admission_id = Column(String(50), comment='住院号')
settlement_id = Column(String(50), comment='医保结算单号码')
create_time = Column(DateTime, server_default=text("CURRENT_TIMESTAMP"), comment='创建时间')