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