-- ---------------------------- -- sys_agreement 初始数据 -- ---------------------------- INSERT INTO [dbo].[sys_agreement] ([id], [title], [content], [create_by], [create_time], [update_by], [update_time]) VALUES (1, N'用户协议', N'
欢迎使用本系统,请仔细阅读以下用户协议...
', 1, GETDATE(), 1, GETDATE()); INSERT INTO [dbo].[sys_agreement] ([id], [title], [content], [create_by], [create_time], [update_by], [update_time]) VALUES (2, N'隐私政策', N'我们非常重视您的个人隐私保护,请仔细阅读以下隐私政策...
', 1, GETDATE(), 1, GETDATE()); GO -- ---------------------------- -- sys_phone 初始数据 -- ---------------------------- INSERT INTO [dbo].[sys_phone] ([id], [expert_phone], [service_phone], [sales_phone], [create_by], [create_time], [update_by], [update_time]) VALUES (1, N'13888888888', N'13888888888', N'13888888888', 1, GETDATE(), 1, GETDATE()); GO -- ---------------------------- -- sys_applet_index_categories 初始数据(精选分类) -- ---------------------------- INSERT INTO [dbo].[sys_applet_index_categories] ([id], [title], [remark], [background], [create_by], [create_time], [update_by], [update_time]) VALUES (1, N'型材下单', N'快速选购心仪型材', NULL, 1, GETDATE(), 1, GETDATE()); INSERT INTO [dbo].[sys_applet_index_categories] ([id], [title], [remark], [background], [create_by], [create_time], [update_by], [update_time]) VALUES (2, N'订单查询', N'实时追踪订单状态', NULL, 1, GETDATE(), 1, GETDATE()); INSERT INTO [dbo].[sys_applet_index_categories] ([id], [title], [remark], [background], [create_by], [create_time], [update_by], [update_time]) VALUES (3, N'投诉建议', N'您的意见是我们进步的动力', NULL, 1, GETDATE(), 1, GETDATE()); INSERT INTO [dbo].[sys_applet_index_categories] ([id], [title], [remark], [background], [create_by], [create_time], [update_by], [update_time]) VALUES (4, N'联系我们', N'专业团队竭诚为您服务', NULL, 1, GETDATE(), 1, GETDATE()); GO