create table DispatchOrd_Running(
|
id int comment "自增主键",
|
DispatchOrdIDDt bigint comment '调度单ID',
|
DispatchOrdState int comment '状态',
|
DispatchOrdStartDate datetime comment '状态时间',
|
DispatchOrdStartOA int comment '操作状态的OA用户ID',
|
OA_latitude float comment '更新状态时的纬度',
|
OA_longitude float comment '更新状态时的经度',
|
OA_address nvarchar(400) comment '更新状态时的地址'
|
)
|