增加断面字段

This commit is contained in:
lhx
2025-10-14 10:16:58 +08:00
parent ef0d92f86f
commit 3cae35fbc2
3 changed files with 25 additions and 1 deletions

View File

@@ -12,4 +12,8 @@ class SectionData(Base):
status = Column(String(100), nullable=False, comment="断面状态")
number = Column(String(100), nullable=False, comment="所在桥梁墩(台)编号", index=True)
transition_paragraph = Column(String(100), comment="过渡段")
design_fill_height = Column(String(100), comment="设计填土高度")
compression_layer_thickness = Column(String(100), comment="压实层厚度")
treatment_depth = Column(String(100), comment="处理深度")
foundation_treatment_method = Column(String(100), comment="地基处理方法")
section_id = Column(String(100), nullable=False, comment="断面id", index=True)