1
dengjunjie
2025-03-11 19623ff98e6470ced1170e2cec1675aadb41146b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
/*
 Navicat Premium Data Transfer
 
 Source Server         : DESKTOP-SCT31AM
 Source Server Type    : SQL Server
 Source Server Version : 13001601
 Source Catalog        : WIDESEAWMS_WHSY
 Source Schema         : dbo
 
 Target Server Type    : SQL Server
 Target Server Version : 13001601
 File Encoding         : 65001
 
 Date: 25/12/2024 11:30:16
*/
 
 
-- ----------------------------
-- Table structure for Dt_LocationInfo
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_LocationInfo]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_LocationInfo]
GO
 
CREATE TABLE [dbo].[Dt_LocationInfo] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [AreaId] int  NOT NULL,
  [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [LocationName] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [RoadwayNo] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Row] int  NOT NULL,
  [Column] int  NOT NULL,
  [Layer] int  NOT NULL,
  [Depth] int  NOT NULL,
  [MaxQty] int  NOT NULL,
  [CurrentQty] int  NOT NULL,
  [LocationType] int  NOT NULL,
  [LocationStatus] int DEFAULT '0' NOT NULL,
  [EnableStatus] int DEFAULT '0' NOT NULL,
  [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_LocationInfo] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'区域主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'AreaId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位编号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'LocationCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位名称',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'LocationName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'巷道编号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'RoadwayNo'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位行',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Row'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位列',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Column'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位层',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Layer'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位深度',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Depth'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'最大库存',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'MaxQty'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'当前库存',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'CurrentQty'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'LocationType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位状态',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'LocationStatus'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'禁用状态',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'EnableStatus'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'货位信息',
'SCHEMA', N'dbo',
'TABLE', N'Dt_LocationInfo'
GO
 
 
-- ----------------------------
-- Records of Dt_LocationInfo
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_LocationInfo] ON
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'277', N'0', N'001-001-001', N'001行001列001层', N'SC01', N'1', N'1', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.357', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'278', N'0', N'001-001-002', N'001行001列002层', N'SC01', N'1', N'1', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.360', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'279', N'0', N'001-001-003', N'001行001列003层', N'SC01', N'1', N'1', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'280', N'0', N'001-002-001', N'001行002列001层', N'SC01', N'1', N'2', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'281', N'0', N'001-002-002', N'001行002列002层', N'SC01', N'1', N'2', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'282', N'0', N'001-002-003', N'001行002列003层', N'SC01', N'1', N'2', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'283', N'0', N'001-003-001', N'001行003列001层', N'SC01', N'1', N'3', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'284', N'0', N'001-003-002', N'001行003列002层', N'SC01', N'1', N'3', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'285', N'0', N'001-003-003', N'001行003列003层', N'SC01', N'1', N'3', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'286', N'0', N'001-004-001', N'001行004列001层', N'SC01', N'1', N'4', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'287', N'0', N'001-004-002', N'001行004列002层', N'SC01', N'1', N'4', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'288', N'0', N'001-004-003', N'001行004列003层', N'SC01', N'1', N'4', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'289', N'0', N'001-005-001', N'001行005列001层', N'SC01', N'1', N'5', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'290', N'0', N'001-005-002', N'001行005列002层', N'SC01', N'1', N'5', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'291', N'0', N'001-005-003', N'001行005列003层', N'SC01', N'1', N'5', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'292', N'0', N'001-006-001', N'001行006列001层', N'SC01', N'1', N'6', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'293', N'0', N'001-006-002', N'001行006列002层', N'SC01', N'1', N'6', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'294', N'0', N'001-006-003', N'001行006列003层', N'SC01', N'1', N'6', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'295', N'0', N'001-007-001', N'001行007列001层', N'SC01', N'1', N'7', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'296', N'0', N'001-007-002', N'001行007列002层', N'SC01', N'1', N'7', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'297', N'0', N'001-007-003', N'001行007列003层', N'SC01', N'1', N'7', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'298', N'0', N'001-008-001', N'001行008列001层', N'SC01', N'1', N'8', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'299', N'0', N'001-008-002', N'001行008列002层', N'SC01', N'1', N'8', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'300', N'0', N'001-008-003', N'001行008列003层', N'SC01', N'1', N'8', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'301', N'0', N'001-009-001', N'001行009列001层', N'SC01', N'1', N'9', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'302', N'0', N'001-009-002', N'001行009列002层', N'SC01', N'1', N'9', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'303', N'0', N'001-009-003', N'001行009列003层', N'SC01', N'1', N'9', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'304', N'0', N'001-010-001', N'001行010列001层', N'SC01', N'1', N'10', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'305', N'0', N'001-010-002', N'001行010列002层', N'SC01', N'1', N'10', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'306', N'0', N'001-010-003', N'001行010列003层', N'SC01', N'1', N'10', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'307', N'0', N'001-011-001', N'001行011列001层', N'SC01', N'1', N'11', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'308', N'0', N'001-011-002', N'001行011列002层', N'SC01', N'1', N'11', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'309', N'0', N'001-011-003', N'001行011列003层', N'SC01', N'1', N'11', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'310', N'0', N'001-012-001', N'001行012列001层', N'SC01', N'1', N'12', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'311', N'0', N'001-012-002', N'001行012列002层', N'SC01', N'1', N'12', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'312', N'0', N'001-012-003', N'001行012列003层', N'SC01', N'1', N'12', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'313', N'0', N'001-013-001', N'001行013列001层', N'SC01', N'1', N'13', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'314', N'0', N'001-013-002', N'001行013列002层', N'SC01', N'1', N'13', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'315', N'0', N'001-013-003', N'001行013列003层', N'SC01', N'1', N'13', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'316', N'0', N'001-014-001', N'001行014列001层', N'SC01', N'1', N'14', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'317', N'0', N'001-014-002', N'001行014列002层', N'SC01', N'1', N'14', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'318', N'0', N'001-014-003', N'001行014列003层', N'SC01', N'1', N'14', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'319', N'0', N'001-015-001', N'001行015列001层', N'SC01', N'1', N'15', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'320', N'0', N'001-015-002', N'001行015列002层', N'SC01', N'1', N'15', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'321', N'0', N'001-015-003', N'001行015列003层', N'SC01', N'1', N'15', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'322', N'0', N'001-016-001', N'001行016列001层', N'SC01', N'1', N'16', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'323', N'0', N'001-016-002', N'001行016列002层', N'SC01', N'1', N'16', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'324', N'0', N'001-016-003', N'001行016列003层', N'SC01', N'1', N'16', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'325', N'0', N'001-017-001', N'001行017列001层', N'SC01', N'1', N'17', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'326', N'0', N'001-017-002', N'001行017列002层', N'SC01', N'1', N'17', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'327', N'0', N'001-017-003', N'001行017列003层', N'SC01', N'1', N'17', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'328', N'0', N'001-018-001', N'001行018列001层', N'SC01', N'1', N'18', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'329', N'0', N'001-018-002', N'001行018列002层', N'SC01', N'1', N'18', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'330', N'0', N'001-018-003', N'001行018列003层', N'SC01', N'1', N'18', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'331', N'0', N'001-019-001', N'001行019列001层', N'SC01', N'1', N'19', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'332', N'0', N'001-019-002', N'001行019列002层', N'SC01', N'1', N'19', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'333', N'0', N'001-019-003', N'001行019列003层', N'SC01', N'1', N'19', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.380', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'334', N'0', N'001-020-001', N'001行020列001层', N'SC01', N'1', N'20', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'335', N'0', N'001-020-002', N'001行020列002层', N'SC01', N'1', N'20', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'336', N'0', N'001-020-003', N'001行020列003层', N'SC01', N'1', N'20', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'337', N'0', N'001-021-001', N'001行021列001层', N'SC01', N'1', N'21', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'338', N'0', N'001-021-002', N'001行021列002层', N'SC01', N'1', N'21', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'339', N'0', N'001-021-003', N'001行021列003层', N'SC01', N'1', N'21', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'340', N'0', N'001-022-001', N'001行022列001层', N'SC01', N'1', N'22', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'341', N'0', N'001-022-002', N'001行022列002层', N'SC01', N'1', N'22', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'342', N'0', N'001-022-003', N'001行022列003层', N'SC01', N'1', N'22', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'343', N'0', N'001-023-001', N'001行023列001层', N'SC01', N'1', N'23', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'344', N'0', N'001-023-002', N'001行023列002层', N'SC01', N'1', N'23', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'345', N'0', N'001-023-003', N'001行023列003层', N'SC01', N'1', N'23', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'346', N'0', N'001-024-001', N'001行024列001层', N'SC01', N'1', N'24', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'347', N'0', N'001-024-002', N'001行024列002层', N'SC01', N'1', N'24', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'348', N'0', N'001-024-003', N'001行024列003层', N'SC01', N'1', N'24', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'349', N'0', N'001-025-001', N'001行025列001层', N'SC01', N'1', N'25', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'350', N'0', N'001-025-002', N'001行025列002层', N'SC01', N'1', N'25', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'351', N'0', N'001-025-003', N'001行025列003层', N'SC01', N'1', N'25', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'352', N'0', N'001-026-001', N'001行026列001层', N'SC01', N'1', N'26', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'353', N'0', N'001-026-002', N'001行026列002层', N'SC01', N'1', N'26', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'354', N'0', N'001-026-003', N'001行026列003层', N'SC01', N'1', N'26', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'355', N'0', N'001-027-001', N'001行027列001层', N'SC01', N'1', N'27', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'356', N'0', N'001-027-002', N'001行027列002层', N'SC01', N'1', N'27', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'357', N'0', N'001-027-003', N'001行027列003层', N'SC01', N'1', N'27', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'358', N'0', N'001-028-001', N'001行028列001层', N'SC01', N'1', N'28', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'359', N'0', N'001-028-002', N'001行028列002层', N'SC01', N'1', N'28', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'360', N'0', N'001-028-003', N'001行028列003层', N'SC01', N'1', N'28', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'361', N'0', N'001-029-001', N'001行029列001层', N'SC01', N'1', N'29', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'362', N'0', N'001-029-002', N'001行029列002层', N'SC01', N'1', N'29', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'363', N'0', N'001-029-003', N'001行029列003层', N'SC01', N'1', N'29', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'364', N'0', N'001-030-001', N'001行030列001层', N'SC01', N'1', N'30', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'365', N'0', N'001-030-002', N'001行030列002层', N'SC01', N'1', N'30', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'366', N'0', N'001-030-003', N'001行030列003层', N'SC01', N'1', N'30', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'367', N'0', N'001-031-001', N'001行031列001层', N'SC01', N'1', N'31', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'368', N'0', N'001-031-002', N'001行031列002层', N'SC01', N'1', N'31', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'369', N'0', N'001-031-003', N'001行031列003层', N'SC01', N'1', N'31', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'370', N'0', N'001-032-001', N'001行032列001层', N'SC01', N'1', N'32', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'371', N'0', N'001-032-002', N'001行032列002层', N'SC01', N'1', N'32', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'372', N'0', N'001-032-003', N'001行032列003层', N'SC01', N'1', N'32', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'373', N'0', N'001-033-001', N'001行033列001层', N'SC01', N'1', N'33', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'374', N'0', N'001-033-002', N'001行033列002层', N'SC01', N'1', N'33', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'375', N'0', N'001-033-003', N'001行033列003层', N'SC01', N'1', N'33', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'376', N'0', N'001-034-001', N'001行034列001层', N'SC01', N'1', N'34', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'377', N'0', N'001-034-002', N'001行034列002层', N'SC01', N'1', N'34', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'378', N'0', N'001-034-003', N'001行034列003层', N'SC01', N'1', N'34', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'379', N'0', N'001-035-001', N'001行035列001层', N'SC01', N'1', N'35', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'380', N'0', N'001-035-002', N'001行035列002层', N'SC01', N'1', N'35', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'381', N'0', N'001-035-003', N'001行035列003层', N'SC01', N'1', N'35', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'382', N'0', N'001-036-001', N'001行036列001层', N'SC01', N'1', N'36', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'383', N'0', N'001-036-002', N'001行036列002层', N'SC01', N'1', N'36', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'384', N'0', N'001-036-003', N'001行036列003层', N'SC01', N'1', N'36', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'385', N'0', N'001-037-001', N'001行037列001层', N'SC01', N'1', N'37', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'386', N'0', N'001-037-002', N'001行037列002层', N'SC01', N'1', N'37', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'387', N'0', N'001-037-003', N'001行037列003层', N'SC01', N'1', N'37', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'388', N'0', N'001-038-001', N'001行038列001层', N'SC01', N'1', N'38', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'389', N'0', N'001-038-002', N'001行038列002层', N'SC01', N'1', N'38', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'390', N'0', N'001-038-003', N'001行038列003层', N'SC01', N'1', N'38', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'391', N'0', N'001-039-001', N'001行039列001层', N'SC01', N'1', N'39', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'392', N'0', N'001-039-002', N'001行039列002层', N'SC01', N'1', N'39', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'393', N'0', N'001-039-003', N'001行039列003层', N'SC01', N'1', N'39', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'394', N'0', N'001-040-001', N'001行040列001层', N'SC01', N'1', N'40', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'395', N'0', N'001-040-002', N'001行040列002层', N'SC01', N'1', N'40', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'396', N'0', N'001-040-003', N'001行040列003层', N'SC01', N'1', N'40', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'397', N'0', N'001-041-001', N'001行041列001层', N'SC01', N'1', N'41', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'398', N'0', N'001-041-002', N'001行041列002层', N'SC01', N'1', N'41', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'399', N'0', N'001-041-003', N'001行041列003层', N'SC01', N'1', N'41', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'400', N'0', N'001-042-001', N'001行042列001层', N'SC01', N'1', N'42', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'401', N'0', N'001-042-002', N'001行042列002层', N'SC01', N'1', N'42', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'402', N'0', N'001-042-003', N'001行042列003层', N'SC01', N'1', N'42', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'403', N'0', N'001-043-001', N'001行043列001层', N'SC01', N'1', N'43', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'404', N'0', N'001-043-002', N'001行043列002层', N'SC01', N'1', N'43', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'405', N'0', N'001-043-003', N'001行043列003层', N'SC01', N'1', N'43', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'406', N'0', N'001-044-001', N'001行044列001层', N'SC01', N'1', N'44', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'407', N'0', N'001-044-002', N'001行044列002层', N'SC01', N'1', N'44', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'408', N'0', N'001-044-003', N'001行044列003层', N'SC01', N'1', N'44', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'409', N'0', N'001-045-001', N'001行045列001层', N'SC01', N'1', N'45', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'410', N'0', N'001-045-002', N'001行045列002层', N'SC01', N'1', N'45', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'411', N'0', N'001-045-003', N'001行045列003层', N'SC01', N'1', N'45', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'412', N'0', N'001-046-001', N'001行046列001层', N'SC01', N'1', N'46', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'413', N'0', N'001-046-002', N'001行046列002层', N'SC01', N'1', N'46', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'414', N'0', N'001-046-003', N'001行046列003层', N'SC01', N'1', N'46', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'415', N'0', N'002-001-001', N'002行001列001层', N'SC01', N'2', N'1', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'416', N'0', N'002-001-002', N'002行001列002层', N'SC01', N'2', N'1', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'417', N'0', N'002-001-003', N'002行001列003层', N'SC01', N'2', N'1', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'418', N'0', N'002-002-001', N'002行002列001层', N'SC01', N'2', N'2', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'419', N'0', N'002-002-002', N'002行002列002层', N'SC01', N'2', N'2', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'420', N'0', N'002-002-003', N'002行002列003层', N'SC01', N'2', N'2', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'421', N'0', N'002-003-001', N'002行003列001层', N'SC01', N'2', N'3', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'422', N'0', N'002-003-002', N'002行003列002层', N'SC01', N'2', N'3', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'423', N'0', N'002-003-003', N'002行003列003层', N'SC01', N'2', N'3', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'424', N'0', N'002-004-001', N'002行004列001层', N'SC01', N'2', N'4', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'425', N'0', N'002-004-002', N'002行004列002层', N'SC01', N'2', N'4', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'426', N'0', N'002-004-003', N'002行004列003层', N'SC01', N'2', N'4', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'427', N'0', N'002-005-001', N'002行005列001层', N'SC01', N'2', N'5', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'428', N'0', N'002-005-002', N'002行005列002层', N'SC01', N'2', N'5', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'429', N'0', N'002-005-003', N'002行005列003层', N'SC01', N'2', N'5', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'430', N'0', N'002-006-001', N'002行006列001层', N'SC01', N'2', N'6', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'431', N'0', N'002-006-002', N'002行006列002层', N'SC01', N'2', N'6', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'432', N'0', N'002-006-003', N'002行006列003层', N'SC01', N'2', N'6', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'433', N'0', N'002-007-001', N'002行007列001层', N'SC01', N'2', N'7', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'434', N'0', N'002-007-002', N'002行007列002层', N'SC01', N'2', N'7', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'435', N'0', N'002-007-003', N'002行007列003层', N'SC01', N'2', N'7', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'436', N'0', N'002-008-001', N'002行008列001层', N'SC01', N'2', N'8', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'437', N'0', N'002-008-002', N'002行008列002层', N'SC01', N'2', N'8', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'438', N'0', N'002-008-003', N'002行008列003层', N'SC01', N'2', N'8', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'439', N'0', N'002-009-001', N'002行009列001层', N'SC01', N'2', N'9', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'440', N'0', N'002-009-002', N'002行009列002层', N'SC01', N'2', N'9', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'441', N'0', N'002-009-003', N'002行009列003层', N'SC01', N'2', N'9', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'442', N'0', N'002-010-001', N'002行010列001层', N'SC01', N'2', N'10', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'443', N'0', N'002-010-002', N'002行010列002层', N'SC01', N'2', N'10', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'444', N'0', N'002-010-003', N'002行010列003层', N'SC01', N'2', N'10', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'445', N'0', N'002-011-001', N'002行011列001层', N'SC01', N'2', N'11', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'446', N'0', N'002-011-002', N'002行011列002层', N'SC01', N'2', N'11', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'447', N'0', N'002-011-003', N'002行011列003层', N'SC01', N'2', N'11', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'448', N'0', N'002-012-001', N'002行012列001层', N'SC01', N'2', N'12', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'449', N'0', N'002-012-002', N'002行012列002层', N'SC01', N'2', N'12', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'450', N'0', N'002-012-003', N'002行012列003层', N'SC01', N'2', N'12', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'451', N'0', N'002-013-001', N'002行013列001层', N'SC01', N'2', N'13', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'452', N'0', N'002-013-002', N'002行013列002层', N'SC01', N'2', N'13', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'453', N'0', N'002-013-003', N'002行013列003层', N'SC01', N'2', N'13', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'454', N'0', N'002-014-001', N'002行014列001层', N'SC01', N'2', N'14', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'455', N'0', N'002-014-002', N'002行014列002层', N'SC01', N'2', N'14', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'456', N'0', N'002-014-003', N'002行014列003层', N'SC01', N'2', N'14', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'457', N'0', N'002-015-001', N'002行015列001层', N'SC01', N'2', N'15', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'458', N'0', N'002-015-002', N'002行015列002层', N'SC01', N'2', N'15', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'459', N'0', N'002-015-003', N'002行015列003层', N'SC01', N'2', N'15', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'460', N'0', N'002-016-001', N'002行016列001层', N'SC01', N'2', N'16', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'461', N'0', N'002-016-002', N'002行016列002层', N'SC01', N'2', N'16', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'462', N'0', N'002-016-003', N'002行016列003层', N'SC01', N'2', N'16', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'463', N'0', N'002-017-001', N'002行017列001层', N'SC01', N'2', N'17', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'464', N'0', N'002-017-002', N'002行017列002层', N'SC01', N'2', N'17', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'465', N'0', N'002-017-003', N'002行017列003层', N'SC01', N'2', N'17', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'466', N'0', N'002-018-001', N'002行018列001层', N'SC01', N'2', N'18', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'467', N'0', N'002-018-002', N'002行018列002层', N'SC01', N'2', N'18', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'468', N'0', N'002-018-003', N'002行018列003层', N'SC01', N'2', N'18', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'469', N'0', N'002-019-001', N'002行019列001层', N'SC01', N'2', N'19', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'470', N'0', N'002-019-002', N'002行019列002层', N'SC01', N'2', N'19', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'471', N'0', N'002-019-003', N'002行019列003层', N'SC01', N'2', N'19', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'472', N'0', N'002-020-001', N'002行020列001层', N'SC01', N'2', N'20', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'473', N'0', N'002-020-002', N'002行020列002层', N'SC01', N'2', N'20', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'474', N'0', N'002-020-003', N'002行020列003层', N'SC01', N'2', N'20', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'475', N'0', N'002-021-001', N'002行021列001层', N'SC01', N'2', N'21', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'476', N'0', N'002-021-002', N'002行021列002层', N'SC01', N'2', N'21', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'477', N'0', N'002-021-003', N'002行021列003层', N'SC01', N'2', N'21', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'478', N'0', N'002-022-001', N'002行022列001层', N'SC01', N'2', N'22', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'479', N'0', N'002-022-002', N'002行022列002层', N'SC01', N'2', N'22', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'480', N'0', N'002-022-003', N'002行022列003层', N'SC01', N'2', N'22', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'481', N'0', N'002-023-001', N'002行023列001层', N'SC01', N'2', N'23', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'482', N'0', N'002-023-002', N'002行023列002层', N'SC01', N'2', N'23', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'483', N'0', N'002-023-003', N'002行023列003层', N'SC01', N'2', N'23', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'484', N'0', N'002-024-001', N'002行024列001层', N'SC01', N'2', N'24', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'485', N'0', N'002-024-002', N'002行024列002层', N'SC01', N'2', N'24', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'486', N'0', N'002-024-003', N'002行024列003层', N'SC01', N'2', N'24', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'487', N'0', N'002-025-001', N'002行025列001层', N'SC01', N'2', N'25', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'488', N'0', N'002-025-002', N'002行025列002层', N'SC01', N'2', N'25', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'489', N'0', N'002-025-003', N'002行025列003层', N'SC01', N'2', N'25', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'490', N'0', N'002-026-001', N'002行026列001层', N'SC01', N'2', N'26', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'491', N'0', N'002-026-002', N'002行026列002层', N'SC01', N'2', N'26', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'492', N'0', N'002-026-003', N'002行026列003层', N'SC01', N'2', N'26', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'493', N'0', N'002-027-001', N'002行027列001层', N'SC01', N'2', N'27', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'494', N'0', N'002-027-002', N'002行027列002层', N'SC01', N'2', N'27', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'495', N'0', N'002-027-003', N'002行027列003层', N'SC01', N'2', N'27', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'496', N'0', N'002-028-001', N'002行028列001层', N'SC01', N'2', N'28', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'497', N'0', N'002-028-002', N'002行028列002层', N'SC01', N'2', N'28', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'498', N'0', N'002-028-003', N'002行028列003层', N'SC01', N'2', N'28', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'499', N'0', N'002-029-001', N'002行029列001层', N'SC01', N'2', N'29', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'500', N'0', N'002-029-002', N'002行029列002层', N'SC01', N'2', N'29', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'501', N'0', N'002-029-003', N'002行029列003层', N'SC01', N'2', N'29', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'502', N'0', N'002-030-001', N'002行030列001层', N'SC01', N'2', N'30', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'503', N'0', N'002-030-002', N'002行030列002层', N'SC01', N'2', N'30', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'504', N'0', N'002-030-003', N'002行030列003层', N'SC01', N'2', N'30', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'505', N'0', N'002-031-001', N'002行031列001层', N'SC01', N'2', N'31', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'506', N'0', N'002-031-002', N'002行031列002层', N'SC01', N'2', N'31', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'507', N'0', N'002-031-003', N'002行031列003层', N'SC01', N'2', N'31', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'508', N'0', N'002-032-001', N'002行032列001层', N'SC01', N'2', N'32', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'509', N'0', N'002-032-002', N'002行032列002层', N'SC01', N'2', N'32', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'510', N'0', N'002-032-003', N'002行032列003层', N'SC01', N'2', N'32', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'511', N'0', N'002-033-001', N'002行033列001层', N'SC01', N'2', N'33', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'512', N'0', N'002-033-002', N'002行033列002层', N'SC01', N'2', N'33', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'513', N'0', N'002-033-003', N'002行033列003层', N'SC01', N'2', N'33', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'514', N'0', N'002-034-001', N'002行034列001层', N'SC01', N'2', N'34', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'515', N'0', N'002-034-002', N'002行034列002层', N'SC01', N'2', N'34', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'516', N'0', N'002-034-003', N'002行034列003层', N'SC01', N'2', N'34', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'517', N'0', N'002-035-001', N'002行035列001层', N'SC01', N'2', N'35', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'518', N'0', N'002-035-002', N'002行035列002层', N'SC01', N'2', N'35', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'519', N'0', N'002-035-003', N'002行035列003层', N'SC01', N'2', N'35', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'520', N'0', N'002-036-001', N'002行036列001层', N'SC01', N'2', N'36', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'521', N'0', N'002-036-002', N'002行036列002层', N'SC01', N'2', N'36', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'522', N'0', N'002-036-003', N'002行036列003层', N'SC01', N'2', N'36', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'523', N'0', N'002-037-001', N'002行037列001层', N'SC01', N'2', N'37', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'524', N'0', N'002-037-002', N'002行037列002层', N'SC01', N'2', N'37', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'525', N'0', N'002-037-003', N'002行037列003层', N'SC01', N'2', N'37', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'526', N'0', N'002-038-001', N'002行038列001层', N'SC01', N'2', N'38', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'527', N'0', N'002-038-002', N'002行038列002层', N'SC01', N'2', N'38', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'528', N'0', N'002-038-003', N'002行038列003层', N'SC01', N'2', N'38', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'529', N'0', N'002-039-001', N'002行039列001层', N'SC01', N'2', N'39', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'530', N'0', N'002-039-002', N'002行039列002层', N'SC01', N'2', N'39', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'531', N'0', N'002-039-003', N'002行039列003层', N'SC01', N'2', N'39', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'532', N'0', N'002-040-001', N'002行040列001层', N'SC01', N'2', N'40', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'533', N'0', N'002-040-002', N'002行040列002层', N'SC01', N'2', N'40', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'534', N'0', N'002-040-003', N'002行040列003层', N'SC01', N'2', N'40', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'535', N'0', N'002-041-001', N'002行041列001层', N'SC01', N'2', N'41', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'536', N'0', N'002-041-002', N'002行041列002层', N'SC01', N'2', N'41', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'537', N'0', N'002-041-003', N'002行041列003层', N'SC01', N'2', N'41', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'538', N'0', N'002-042-001', N'002行042列001层', N'SC01', N'2', N'42', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'539', N'0', N'002-042-002', N'002行042列002层', N'SC01', N'2', N'42', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'540', N'0', N'002-042-003', N'002行042列003层', N'SC01', N'2', N'42', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'541', N'0', N'002-043-001', N'002行043列001层', N'SC01', N'2', N'43', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'542', N'0', N'002-043-002', N'002行043列002层', N'SC01', N'2', N'43', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'543', N'0', N'002-043-003', N'002行043列003层', N'SC01', N'2', N'43', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'544', N'0', N'002-044-001', N'002行044列001层', N'SC01', N'2', N'44', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'545', N'0', N'002-044-002', N'002行044列002层', N'SC01', N'2', N'44', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'546', N'0', N'002-044-003', N'002行044列003层', N'SC01', N'2', N'44', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'547', N'0', N'002-045-001', N'002行045列001层', N'SC01', N'2', N'45', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'548', N'0', N'002-045-002', N'002行045列002层', N'SC01', N'2', N'45', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'549', N'0', N'002-045-003', N'002行045列003层', N'SC01', N'2', N'45', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'550', N'0', N'002-046-001', N'002行046列001层', N'SC01', N'2', N'46', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'551', N'0', N'002-046-002', N'002行046列002层', N'SC01', N'2', N'46', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'552', N'0', N'002-046-003', N'002行046列003层', N'SC01', N'2', N'46', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'553', N'0', N'003-001-001', N'003行001列001层', N'SC01', N'3', N'1', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'554', N'0', N'003-001-002', N'003行001列002层', N'SC01', N'3', N'1', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'555', N'0', N'003-001-003', N'003行001列003层', N'SC01', N'3', N'1', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'556', N'0', N'003-002-001', N'003行002列001层', N'SC01', N'3', N'2', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'557', N'0', N'003-002-002', N'003行002列002层', N'SC01', N'3', N'2', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'558', N'0', N'003-002-003', N'003行002列003层', N'SC01', N'3', N'2', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'559', N'0', N'003-003-001', N'003行003列001层', N'SC01', N'3', N'3', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'560', N'0', N'003-003-002', N'003行003列002层', N'SC01', N'3', N'3', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'561', N'0', N'003-003-003', N'003行003列003层', N'SC01', N'3', N'3', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'562', N'0', N'003-004-001', N'003行004列001层', N'SC01', N'3', N'4', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'563', N'0', N'003-004-002', N'003行004列002层', N'SC01', N'3', N'4', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'564', N'0', N'003-004-003', N'003行004列003层', N'SC01', N'3', N'4', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'565', N'0', N'003-005-001', N'003行005列001层', N'SC01', N'3', N'5', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'566', N'0', N'003-005-002', N'003行005列002层', N'SC01', N'3', N'5', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'567', N'0', N'003-005-003', N'003行005列003层', N'SC01', N'3', N'5', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'568', N'0', N'003-006-001', N'003行006列001层', N'SC01', N'3', N'6', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'569', N'0', N'003-006-002', N'003行006列002层', N'SC01', N'3', N'6', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'570', N'0', N'003-006-003', N'003行006列003层', N'SC01', N'3', N'6', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'571', N'0', N'003-007-001', N'003行007列001层', N'SC01', N'3', N'7', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'572', N'0', N'003-007-002', N'003行007列002层', N'SC01', N'3', N'7', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'573', N'0', N'003-007-003', N'003行007列003层', N'SC01', N'3', N'7', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'574', N'0', N'003-008-001', N'003行008列001层', N'SC01', N'3', N'8', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'575', N'0', N'003-008-002', N'003行008列002层', N'SC01', N'3', N'8', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'576', N'0', N'003-008-003', N'003行008列003层', N'SC01', N'3', N'8', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'577', N'0', N'003-009-001', N'003行009列001层', N'SC01', N'3', N'9', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'578', N'0', N'003-009-002', N'003行009列002层', N'SC01', N'3', N'9', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'579', N'0', N'003-009-003', N'003行009列003层', N'SC01', N'3', N'9', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'580', N'0', N'003-010-001', N'003行010列001层', N'SC01', N'3', N'10', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'581', N'0', N'003-010-002', N'003行010列002层', N'SC01', N'3', N'10', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'582', N'0', N'003-010-003', N'003行010列003层', N'SC01', N'3', N'10', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'583', N'0', N'003-011-001', N'003行011列001层', N'SC01', N'3', N'11', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'584', N'0', N'003-011-002', N'003行011列002层', N'SC01', N'3', N'11', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'585', N'0', N'003-011-003', N'003行011列003层', N'SC01', N'3', N'11', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'586', N'0', N'003-012-001', N'003行012列001层', N'SC01', N'3', N'12', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'587', N'0', N'003-012-002', N'003行012列002层', N'SC01', N'3', N'12', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'588', N'0', N'003-012-003', N'003行012列003层', N'SC01', N'3', N'12', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'589', N'0', N'003-013-001', N'003行013列001层', N'SC01', N'3', N'13', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'590', N'0', N'003-013-002', N'003行013列002层', N'SC01', N'3', N'13', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'591', N'0', N'003-013-003', N'003行013列003层', N'SC01', N'3', N'13', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'592', N'0', N'003-014-001', N'003行014列001层', N'SC01', N'3', N'14', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'593', N'0', N'003-014-002', N'003行014列002层', N'SC01', N'3', N'14', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'594', N'0', N'003-014-003', N'003行014列003层', N'SC01', N'3', N'14', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'595', N'0', N'003-015-001', N'003行015列001层', N'SC01', N'3', N'15', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'596', N'0', N'003-015-002', N'003行015列002层', N'SC01', N'3', N'15', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'597', N'0', N'003-015-003', N'003行015列003层', N'SC01', N'3', N'15', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'598', N'0', N'003-016-001', N'003行016列001层', N'SC01', N'3', N'16', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'599', N'0', N'003-016-002', N'003行016列002层', N'SC01', N'3', N'16', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'600', N'0', N'003-016-003', N'003行016列003层', N'SC01', N'3', N'16', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'601', N'0', N'003-017-001', N'003行017列001层', N'SC01', N'3', N'17', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'602', N'0', N'003-017-002', N'003行017列002层', N'SC01', N'3', N'17', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'603', N'0', N'003-017-003', N'003行017列003层', N'SC01', N'3', N'17', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'604', N'0', N'003-018-001', N'003行018列001层', N'SC01', N'3', N'18', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'605', N'0', N'003-018-002', N'003行018列002层', N'SC01', N'3', N'18', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'606', N'0', N'003-018-003', N'003行018列003层', N'SC01', N'3', N'18', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'607', N'0', N'003-019-001', N'003行019列001层', N'SC01', N'3', N'19', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'608', N'0', N'003-019-002', N'003行019列002层', N'SC01', N'3', N'19', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'609', N'0', N'003-019-003', N'003行019列003层', N'SC01', N'3', N'19', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'610', N'0', N'003-020-001', N'003行020列001层', N'SC01', N'3', N'20', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'611', N'0', N'003-020-002', N'003行020列002层', N'SC01', N'3', N'20', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'612', N'0', N'003-020-003', N'003行020列003层', N'SC01', N'3', N'20', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'613', N'0', N'003-021-001', N'003行021列001层', N'SC01', N'3', N'21', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'614', N'0', N'003-021-002', N'003行021列002层', N'SC01', N'3', N'21', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'615', N'0', N'003-021-003', N'003行021列003层', N'SC01', N'3', N'21', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'616', N'0', N'003-022-001', N'003行022列001层', N'SC01', N'3', N'22', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'617', N'0', N'003-022-002', N'003行022列002层', N'SC01', N'3', N'22', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'618', N'0', N'003-022-003', N'003行022列003层', N'SC01', N'3', N'22', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'619', N'0', N'003-023-001', N'003行023列001层', N'SC01', N'3', N'23', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'620', N'0', N'003-023-002', N'003行023列002层', N'SC01', N'3', N'23', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'621', N'0', N'003-023-003', N'003行023列003层', N'SC01', N'3', N'23', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'622', N'0', N'003-024-001', N'003行024列001层', N'SC01', N'3', N'24', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'623', N'0', N'003-024-002', N'003行024列002层', N'SC01', N'3', N'24', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'624', N'0', N'003-024-003', N'003行024列003层', N'SC01', N'3', N'24', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'625', N'0', N'003-025-001', N'003行025列001层', N'SC01', N'3', N'25', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'626', N'0', N'003-025-002', N'003行025列002层', N'SC01', N'3', N'25', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'627', N'0', N'003-025-003', N'003行025列003层', N'SC01', N'3', N'25', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'628', N'0', N'003-026-001', N'003行026列001层', N'SC01', N'3', N'26', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'629', N'0', N'003-026-002', N'003行026列002层', N'SC01', N'3', N'26', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'630', N'0', N'003-026-003', N'003行026列003层', N'SC01', N'3', N'26', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'631', N'0', N'003-027-001', N'003行027列001层', N'SC01', N'3', N'27', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'632', N'0', N'003-027-002', N'003行027列002层', N'SC01', N'3', N'27', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'633', N'0', N'003-027-003', N'003行027列003层', N'SC01', N'3', N'27', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'634', N'0', N'003-028-001', N'003行028列001层', N'SC01', N'3', N'28', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'635', N'0', N'003-028-002', N'003行028列002层', N'SC01', N'3', N'28', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'636', N'0', N'003-028-003', N'003行028列003层', N'SC01', N'3', N'28', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'637', N'0', N'003-029-001', N'003行029列001层', N'SC01', N'3', N'29', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'638', N'0', N'003-029-002', N'003行029列002层', N'SC01', N'3', N'29', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'639', N'0', N'003-029-003', N'003行029列003层', N'SC01', N'3', N'29', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'640', N'0', N'003-030-001', N'003行030列001层', N'SC01', N'3', N'30', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'641', N'0', N'003-030-002', N'003行030列002层', N'SC01', N'3', N'30', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'642', N'0', N'003-030-003', N'003行030列003层', N'SC01', N'3', N'30', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'643', N'0', N'003-031-001', N'003行031列001层', N'SC01', N'3', N'31', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'644', N'0', N'003-031-002', N'003行031列002层', N'SC01', N'3', N'31', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'645', N'0', N'003-031-003', N'003行031列003层', N'SC01', N'3', N'31', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'646', N'0', N'003-032-001', N'003行032列001层', N'SC01', N'3', N'32', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'647', N'0', N'003-032-002', N'003行032列002层', N'SC01', N'3', N'32', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'648', N'0', N'003-032-003', N'003行032列003层', N'SC01', N'3', N'32', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'649', N'0', N'003-033-001', N'003行033列001层', N'SC01', N'3', N'33', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'650', N'0', N'003-033-002', N'003行033列002层', N'SC01', N'3', N'33', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'651', N'0', N'003-033-003', N'003行033列003层', N'SC01', N'3', N'33', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'652', N'0', N'003-034-001', N'003行034列001层', N'SC01', N'3', N'34', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'653', N'0', N'003-034-002', N'003行034列002层', N'SC01', N'3', N'34', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'654', N'0', N'003-034-003', N'003行034列003层', N'SC01', N'3', N'34', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'655', N'0', N'003-035-001', N'003行035列001层', N'SC01', N'3', N'35', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'656', N'0', N'003-035-002', N'003行035列002层', N'SC01', N'3', N'35', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'657', N'0', N'003-035-003', N'003行035列003层', N'SC01', N'3', N'35', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'658', N'0', N'003-036-001', N'003行036列001层', N'SC01', N'3', N'36', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'659', N'0', N'003-036-002', N'003行036列002层', N'SC01', N'3', N'36', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'660', N'0', N'003-036-003', N'003行036列003层', N'SC01', N'3', N'36', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'661', N'0', N'003-037-001', N'003行037列001层', N'SC01', N'3', N'37', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'662', N'0', N'003-037-002', N'003行037列002层', N'SC01', N'3', N'37', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'663', N'0', N'003-037-003', N'003行037列003层', N'SC01', N'3', N'37', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'664', N'0', N'003-038-001', N'003行038列001层', N'SC01', N'3', N'38', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'665', N'0', N'003-038-002', N'003行038列002层', N'SC01', N'3', N'38', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'666', N'0', N'003-038-003', N'003行038列003层', N'SC01', N'3', N'38', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'667', N'0', N'003-039-001', N'003行039列001层', N'SC01', N'3', N'39', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'668', N'0', N'003-039-002', N'003行039列002层', N'SC01', N'3', N'39', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'669', N'0', N'003-039-003', N'003行039列003层', N'SC01', N'3', N'39', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'670', N'0', N'003-040-001', N'003行040列001层', N'SC01', N'3', N'40', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'671', N'0', N'003-040-002', N'003行040列002层', N'SC01', N'3', N'40', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'672', N'0', N'003-040-003', N'003行040列003层', N'SC01', N'3', N'40', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'673', N'0', N'003-041-001', N'003行041列001层', N'SC01', N'3', N'41', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'674', N'0', N'003-041-002', N'003行041列002层', N'SC01', N'3', N'41', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'675', N'0', N'003-041-003', N'003行041列003层', N'SC01', N'3', N'41', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'676', N'0', N'003-042-001', N'003行042列001层', N'SC01', N'3', N'42', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'677', N'0', N'003-042-002', N'003行042列002层', N'SC01', N'3', N'42', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'678', N'0', N'003-042-003', N'003行042列003层', N'SC01', N'3', N'42', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'679', N'0', N'003-043-001', N'003行043列001层', N'SC01', N'3', N'43', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'680', N'0', N'003-043-002', N'003行043列002层', N'SC01', N'3', N'43', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'681', N'0', N'003-043-003', N'003行043列003层', N'SC01', N'3', N'43', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'682', N'0', N'003-044-001', N'003行044列001层', N'SC01', N'3', N'44', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'683', N'0', N'003-044-002', N'003行044列002层', N'SC01', N'3', N'44', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'684', N'0', N'003-044-003', N'003行044列003层', N'SC01', N'3', N'44', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'685', N'0', N'003-045-001', N'003行045列001层', N'SC01', N'3', N'45', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'686', N'0', N'003-045-002', N'003行045列002层', N'SC01', N'3', N'45', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'687', N'0', N'003-045-003', N'003行045列003层', N'SC01', N'3', N'45', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'688', N'0', N'003-046-001', N'003行046列001层', N'SC01', N'3', N'46', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'689', N'0', N'003-046-002', N'003行046列002层', N'SC01', N'3', N'46', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'690', N'0', N'003-046-003', N'003行046列003层', N'SC01', N'3', N'46', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Dt_LocationInfo] OFF
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_LocationInfo
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_LocationInfo]', RESEED, 690)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_LocationInfo
-- ----------------------------
ALTER TABLE [dbo].[Dt_LocationInfo] ADD CONSTRAINT [PK_Dt_LocationInfo_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO