标签:管理员 asc clu str 超级 deletion com col rtc
CREATE TABLE [dbo].[t_PayWay]( [id] [int] IDENTITY(1,1) NOT NULL, [Code] [varchar](20) NULL, [Name] [varchar](200) NULL, [SortCode] [int] NULL, [Enabled] [int] NULL, [DeletionStateCode] [int] NULL, [Description] [nvarchar](200) NULL, [CreateOn] [datetime] NULL, [CreateUserId] [nvarchar](20) NULL, [CreateBy] [nvarchar](20) NULL, [ModifiedOn] [datetime] NULL, [ModifiedUserId] [nvarchar](20) NULL, [ModifiedBy] [nvarchar](20) NULL, [defaultpay] [int] NULL, [YZSK] [int] NULL, [YZDH] [int] NULL, [YZTT] [int] NULL, [DYSK] [int] NULL, [DYDH] [int] NULL, [DYTT] [int] NULL, [CZ] [int] NULL, [YJ] [int] NULL, [ZJ] [int] NULL, [bIsSystemSet] [int] NULL, [bUnCanChange] [int] NULL, CONSTRAINT [PK_T_PAYWAY] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]
SET IDENTITY_INSERT [dbo].[t_PayWay] ON INSERT [dbo].[t_PayWay] ([id], [Code], [Name], [SortCode], [Enabled], [DeletionStateCode], [Description], [CreateOn], [CreateUserId], [CreateBy], [ModifiedOn], [ModifiedUserId], [ModifiedBy], [defaultpay], [YZSK], [YZDH], [YZTT], [DYSK], [DYDH], [DYTT], [CZ], [YJ], [ZJ], [bIsSystemSet], [bUnCanChange]) VALUES (1, N‘1‘, N‘现金‘, 10000037, 1, NULL, N‘系统配置,不可编辑删除‘, CAST(N‘2016-11-08 11:51:16.213‘ AS DateTime), N‘10000000‘, N‘超级管理员‘, CAST(N‘2017-09-24 13:30:02.220‘ AS DateTime), N‘10000000‘, N‘超级管理员‘, NULL, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, NULL) SET IDENTITY_INSERT [dbo].[t_PayWay] OFF
标签:管理员 asc clu str 超级 deletion com col rtc
原文地址:https://www.cnblogs.com/qi123/p/9221334.html