1.添加get_uplaod_data,获取今日上传的数据接口

2.用户model添加三个返回字段
This commit is contained in:
whm
2026-02-03 14:45:01 +08:00
parent 5cfdadf02f
commit 28cddd7409
2 changed files with 69 additions and 1 deletions

View File

@@ -17,6 +17,9 @@ class Account(Base):
max_variation = Column(Integer, default=1, comment="变化量的绝对值,单位是毫米")
yh_id = Column(String(1000), comment="宇恒一号用户id")
cl_name = Column(String(100), nullable=True, comment="测量人员")
device_name = Column(String(1000), comment="设备名称")
device_port = Column(String(1000), comment="设备端口")
device_ip = Column(String(1000), comment="设备局域网内ip地址")
# 模型转字典