|
@@ -14,6 +14,10 @@ class ThreeProofingResponsiblePerson(Base):
|
|
|
position = Column(String(255), nullable=True, comment='职务')
|
|
|
phone = Column(String(50), comment='手机号码')
|
|
|
telephone = Column(String(255), comment='办公电话')
|
|
|
+ longitude =Column(String(255), comment='经度')
|
|
|
+ latitude =Column(String(255), comment='纬度')
|
|
|
+ location_time =Column(DateTime, comment='最近一次打点时间')
|
|
|
+ responsible_type =Column(String(255), comment='责任类型(三防、危化、森防)')
|
|
|
order_num = Column(Integer, default=100, comment='排序顺序')
|
|
|
user_id = Column(Integer, comment='用户id')
|
|
|
create_time = Column(DateTime, default=datetime.now, comment='数据创建时间')
|