观测点增加水准线路字段

This commit is contained in:
lhx
2025-10-14 10:38:47 +08:00
parent 3cae35fbc2
commit 52891cfb76
5 changed files with 9 additions and 2 deletions

View File

@@ -7,5 +7,6 @@ class Checkpoint(Base):
id = Column(Integer, primary_key=True, index=True, autoincrement=True)
aname = Column(String(100), nullable=False, comment="观察点名称")
burial_date = Column(String(100), comment="埋设日期")
linecode = Column(String(100), comment="线路编码")
section_id = Column(String(100), nullable=False, comment="所属断面id")
point_id = Column(String(100), nullable=False, comment="观察点id")