数据库表结构说明 — 电子围栏出入表

电子围栏出入表(vhcOutLine)记录了车辆出入电子围栏的数据,包括时间、位置、状态、总里程等。

* vhcOutLine(偏移报表)

中文字段 英文字段 数据类型 长度 主键 / 外键 字段值约束 默认值
编号 id int 4 p IDENTITY(1,1) ,Not null  
车辆编号 vhcid int 4 F Not null 0
出围栏时间 outtime datetime 8   Not null getdate()
出围栏时状态 outstates varchar 200   Not null ‘’
出围栏时位置 outposinfo varchar 250   Not null ‘’
出围栏时总里程 outTotalDistance float 8   Not null 0
出围栏时经度 outlng float 8   Not null 0
出围栏时纬度 outlat float 8   Not null 0
进围栏时间 intotime datetime 8   Not null getdate()
进围栏时状态 intostates varchar 200   Not null ‘’
进围栏时位置 intoposinfo varchar 250   Not null ‘’
进围栏时里程 intoTotalDistance float 8   Not null 0
围栏编号 fencieId int 4 F Not null 0
订单编号(在有导入订单的情况下使用) orderformid int 4   Not null 0
进围栏时经度 intolng float 8   Not null 0
进围栏时纬度 intolat float 8   Not null 0