AlarmPreResult.sql 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. Navicat SQL Server Data Transfer
  3. Source Server : 9000
  4. Source Server Version : 105000
  5. Source Host : .\sqlexpress:1433
  6. Source Database : LHBMS
  7. Source Schema : dbo
  8. Target Server Type : SQL Server
  9. Target Server Version : 105000
  10. File Encoding : 65001
  11. Date: 2021-05-11 15:28:44
  12. */
  13. -- ----------------------------
  14. -- Table structure for AlarmPreResult
  15. -- ----------------------------
  16. DROP TABLE [dbo].[AlarmPreResult]
  17. GO
  18. CREATE TABLE [dbo].[AlarmPreResult] (
  19. [ID] int NOT NULL IDENTITY(1,1) ,
  20. [SetType] int NULL ,
  21. [Result] nvarchar(50) NULL
  22. )
  23. GO
  24. DBCC CHECKIDENT(N'[dbo].[AlarmPreResult]', RESEED, 11)
  25. GO
  26. -- ----------------------------
  27. -- Records of AlarmPreResult
  28. -- ----------------------------
  29. SET IDENTITY_INSERT [dbo].[AlarmPreResult] ON
  30. GO
  31. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'1', N'1', N'去现场勘察')
  32. GO
  33. GO
  34. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'2', N'1', N'通知相关人员')
  35. GO
  36. GO
  37. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'5', N'1', N'报110')
  38. GO
  39. GO
  40. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'6', N'3', N'误报')
  41. GO
  42. GO
  43. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'7', N'2', N'处理完成')
  44. GO
  45. GO
  46. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'8', N'2', N'交给警察处理')
  47. GO
  48. GO
  49. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'9', N'3', N'小区保安')
  50. GO
  51. GO
  52. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'10', N'3', N'派出所')
  53. GO
  54. GO
  55. INSERT INTO [dbo].[AlarmPreResult] ([ID], [SetType], [Result]) VALUES (N'11', N'3', N'市公安局')
  56. GO
  57. GO
  58. SET IDENTITY_INSERT [dbo].[AlarmPreResult] OFF
  59. GO
  60. -- ----------------------------
  61. -- Indexes structure for table AlarmPreResult
  62. -- ----------------------------
  63. -- ----------------------------
  64. -- Primary Key structure for table AlarmPreResult
  65. -- ----------------------------
  66. ALTER TABLE [dbo].[AlarmPreResult] ADD PRIMARY KEY ([ID])
  67. GO