HS_ERP_Order-update.sql 2.0 KB

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