wlzboy
4 天以前 06a17c236d4cb9b8da75fce43af938cb7ea510bf
1
2
3
4
5
6
7
8
9
10
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 '更新状态时的地址'
)