init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/****** Object: Table [dbo].[P_SystemDesktopTab] Script Date: 05/01/2017 21:28:55 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[P_SystemDesktopTab](
[id] [int] IDENTITY(1,1) NOT NULL,
[MenuId] [varchar](50) NULL,
[MenuName] [varchar](50) NULL,
[OrderId] [int] NULL,
[OperatorId] [int] NULL,
CONSTRAINT [PK_P_SystemDesktopTab] 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]
GO
SET ANSI_PADDING OFF
GO