wzp
2025-07-17 5755cac345e824c0b4feb7cf973a179eb10fe6cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
USE [came]
GO
 
/****** Object:  Table [dbo].[A_OrderStatus]    Script Date: 2025/5/4 17:00:42 ******/
SET ANSI_NULLS ON
GO
 
SET QUOTED_IDENTIFIER ON
GO
 
CREATE TABLE [dbo].[A_OrderStatus](
    [id] [int] IDENTITY(1,1) NOT NULL,
    [serviceOrdID] [nvarchar](50) NULL,
    [msg] [nvarchar](50) NULL,
    [updateTime] [datetime] NULL,
    [flag] [int] NOT NULL
) ON [PRIMARY]
GO
 
ALTER TABLE [dbo].[A_OrderStatus] ADD  CONSTRAINT [DF_tb_OrderStatus_flag]  DEFAULT ((0)) FOR [flag]
GO