XinYiWCS_ZJG.sql 629 KB
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 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917
USE [master]
GO
/****** Object:  Database [XinYiWCS_ZJG]    Script Date: 2020/8/28 16:16:01 ******/
CREATE DATABASE [XinYiWCS_ZJG]
 CONTAINMENT = NONE
 ON  PRIMARY 
( NAME = N'XinYiWCS_ZJG', FILENAME = N'D:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\XinYiWCS_ZJG.mdf' , SIZE = 5120KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
 LOG ON 
( NAME = N'XinYiWCS_ZJG_log', FILENAME = N'D:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\XinYiWCS_ZJG_log.ldf' , SIZE = 1024KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
GO
ALTER DATABASE [XinYiWCS_ZJG] SET COMPATIBILITY_LEVEL = 110
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [XinYiWCS_ZJG].[dbo].[sp_fulltext_database] @action = 'enable'
end
GO
ALTER DATABASE [XinYiWCS_ZJG] SET ANSI_NULL_DEFAULT OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET ANSI_NULLS OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET ANSI_PADDING OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET ANSI_WARNINGS OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET ARITHABORT OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET AUTO_CLOSE OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET AUTO_SHRINK OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET AUTO_UPDATE_STATISTICS ON 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET CURSOR_CLOSE_ON_COMMIT OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET CURSOR_DEFAULT  GLOBAL 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET CONCAT_NULL_YIELDS_NULL OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET NUMERIC_ROUNDABORT OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET QUOTED_IDENTIFIER OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET RECURSIVE_TRIGGERS OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET  DISABLE_BROKER 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET AUTO_UPDATE_STATISTICS_ASYNC OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET DATE_CORRELATION_OPTIMIZATION OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET TRUSTWORTHY OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET ALLOW_SNAPSHOT_ISOLATION OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET PARAMETERIZATION SIMPLE 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET READ_COMMITTED_SNAPSHOT OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET HONOR_BROKER_PRIORITY OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET RECOVERY SIMPLE 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET  MULTI_USER 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET PAGE_VERIFY CHECKSUM  
GO
ALTER DATABASE [XinYiWCS_ZJG] SET DB_CHAINING OFF 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) 
GO
ALTER DATABASE [XinYiWCS_ZJG] SET TARGET_RECOVERY_TIME = 0 SECONDS 
GO
EXEC sys.sp_db_vardecimal_storage_format N'XinYiWCS_ZJG', N'ON'
GO
USE [XinYiWCS_ZJG]
GO
/****** Object:  Table [dbo].[I_Device]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[I_Device](
	[Code] [nvarchar](50) NOT NULL,
	[Point] [int] NOT NULL,
	[Type] [nvarchar](50) NOT NULL,
	[Name] [nvarchar](50) NOT NULL,
	[RoadWay] [int] NOT NULL,
	[ForkNo] [int] NOT NULL,
	[IP] [nvarchar](50) NOT NULL,
	[ToPoint] [nvarchar](50) NOT NULL,
	[BackPoint] [nvarchar](50) NOT NULL,
	[IsEnable] [bit] NOT NULL,
	[Limit] [int] NOT NULL,
	[IsWeight] [real] NOT NULL,
 CONSTRAINT [PK__I_Device__A25C5AA64BB6B136] PRIMARY KEY CLUSTERED 
(
	[Code] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[I_Device_Address]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[I_Device_Address](
	[ID] [int] IDENTITY(1,1) NOT NULL,
	[Code] [nvarchar](50) NOT NULL,
	[Member] [nvarchar](50) NOT NULL,
	[Type] [nvarchar](50) NOT NULL,
	[Db] [nvarchar](50) NOT NULL,
	[Address] [int] NOT NULL,
	[Address_decimal] [int] NOT NULL,
	[AddressType] [nvarchar](50) NOT NULL,
	[Name] [nvarchar](200) NOT NULL,
	[Note] [nvarchar](200) NULL,
	[Value] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK__I_Device__3214EC2702C207FB] PRIMARY KEY CLUSTERED 
(
	[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[I_Pose]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[I_Pose](
	[Id] [int] IDENTITY(1,1) NOT NULL,
	[wcName] [nvarchar](50) NULL,
	[wcType] [nvarchar](50) NULL,
	[wcTypeName] [nvarchar](50) NULL,
	[wcRoadWay] [int] NULL,
	[Xpose] [int] NULL,
	[Ypose] [int] NULL,
	[Zpose] [int] NULL,
	[Station] [int] NULL,
 CONSTRAINT [PK__I_Pose__3214EC07596F03D1] PRIMARY KEY CLUSTERED 
(
	[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[I_Task]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[I_Task](
	[tNo] [nvarchar](50) NOT NULL,
	[tNo_WMS] [nvarchar](50) NULL,
	[Type] [nvarchar](50) NULL,
	[TaskFlow] [int] NULL,
	[TaskSetp] [int] NULL,
	[NowState] [int] NULL,
	[NextState] [int] NULL,
	[PalletOrBoxNo] [nvarchar](50) NULL,
	[Priority] [int] NULL,
	[RoadWay] [int] NULL,
	[ForkNo] [int] NULL,
	[FromPlace] [nvarchar](50) NULL,
	[ToPlace] [nvarchar](50) NULL,
	[EntrancePlace] [nvarchar](50) NULL,
	[ExitPlace] [nvarchar](50) NULL,
	[ErrorMsg] [nvarchar](500) NULL,
	[Task_CreateWho] [nvarchar](50) NULL,
	[Task_CreateTime] [datetime] NULL,
	[Task_StartTime] [datetime] NULL,
	[Task_FinishTime] [datetime] NULL,
	[SendAgainFlag] [int] NULL,
	[DeleteFlag] [int] NULL,
	[EmptyOutFlag] [int] NULL,
	[FullInFlag] [int] NULL,
	[FullInPlace] [nvarchar](50) NULL,
	[Height] [nvarchar](50) NULL,
	[Weight] [nvarchar](50) NULL,
	[preTaskNo] [nvarchar](50) NULL,
 CONSTRAINT [PK__I_Task__DC11BDD75753D1F7] PRIMARY KEY CLUSTERED 
(
	[tNo] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[I_Task_His]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[I_Task_His](
	[tNo] [nvarchar](50) NOT NULL,
	[tNo_WMS] [nvarchar](50) NULL,
	[Type] [nvarchar](50) NULL,
	[TaskFlow] [int] NULL,
	[TaskSetp] [int] NULL,
	[NowState] [int] NULL,
	[NextState] [int] NULL,
	[PalletOrBoxNo] [nvarchar](50) NULL,
	[Priority] [int] NULL,
	[RoadWay] [int] NULL,
	[ForkNo] [int] NULL,
	[FromPlace] [nvarchar](50) NULL,
	[ToPlace] [nvarchar](50) NULL,
	[EntrancePlace] [nvarchar](50) NULL,
	[ExitPlace] [nvarchar](50) NULL,
	[ErrorMsg] [nvarchar](500) NULL,
	[Task_CreateWho] [nvarchar](50) NULL,
	[Task_CreateTime] [datetime] NULL,
	[Task_StartTime] [datetime] NULL,
	[Task_FinishTime] [datetime] NULL,
	[SendAgainFlag] [int] NULL,
	[DeleteFlag] [int] NULL,
	[EmptyOutFlag] [int] NULL,
	[FullInFlag] [int] NULL,
	[FullInPlace] [nvarchar](50) NULL,
	[Height] [nvarchar](50) NULL,
	[Weight] [nvarchar](50) NULL,
	[preTaskNo] [nvarchar](50) NULL,
 CONSTRAINT [PK__I_Task_H__DC11BDD7CEA537D2] PRIMARY KEY CLUSTERED 
(
	[tNo] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[T_BaseNumber]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[T_BaseNumber](
	[Value] [varchar](50) NOT NULL,
	[Vkey] [nvarchar](50) NULL,
 CONSTRAINT [PK__T_BaseNu__07D9BBC35CDD70FF] PRIMARY KEY CLUSTERED 
(
	[Value] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF
GO
/****** Object:  Table [dbo].[T_Error_Config]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[T_Error_Config](
	[ErrorID] [nvarchar](50) NOT NULL,
	[ErrorMsg] [nvarchar](50) NULL,
	[ErrorSolve] [nvarchar](500) NULL,
 CONSTRAINT [PK__T_Error___358565CAD86B1686] PRIMARY KEY CLUSTERED 
(
	[ErrorID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[T_TaskFlow]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[T_TaskFlow](
	[Id] [int] NOT NULL,
	[Menu] [int] NULL,
	[TaskType] [varchar](50) NULL,
	[EntranceType] [varchar](50) NULL,
	[ExitType] [varchar](50) NULL,
	[Setp] [int] NULL,
	[NowState] [int] NULL,
	[NextState] [int] NULL,
	[FromPlace] [varchar](50) NULL,
	[ToPlace] [varchar](50) NULL,
	[Remark] [varchar](50) NULL,
 CONSTRAINT [PK_T_TaskFlow] PRIMARY KEY CLUSTERED 
(
	[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF
GO
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'ConveyorErrorA01', 0, N'ConveyorError', N'输送线错误', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'ConveyorState01', 0, N'ConveyorState', N'输送线状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'EntranceStationA01', 1010, N'Entrance', N'入库口(P1010)', 1, 0, N'10.8.2.230', N'1012', N'1007', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'ExitStationA01', 1007, N'Exit', N'出库口(P1007)', 1, 0, N'10.8.2.230', N'0', N'1002', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'InStationA01', 1012, N'InStation', N'堆垛机取(P1012)', 1, 0, N'10.8.2.230', N'0', N'1010', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'OutStationA01', 1002, N'OutStation', N'堆垛机放(P1002)', 1, 0, N'10.8.2.230', N'1007', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1002', 0, N'PointState', N'P1002点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1003', 0, N'PointState', N'P1003点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1004', 0, N'PointState', N'P1004点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1005', 0, N'PointState', N'P1005点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1007', 0, N'PointState', N'P1007点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1009', 0, N'PointState', N'P1009点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1010', 0, N'PointState', N'P1010点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1011', 0, N'PointState', N'P1011点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'PointStateP1012', 0, N'PointState', N'P1012点状态', 0, 0, N'10.8.2.230', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'Srm01', 1, N'Srm', N'1号堆垛机', 1, 0, N'10.8.2.233', N'0', N'0', 1, 0, 0)
INSERT [dbo].[I_Device] ([Code], [Point], [Type], [Name], [RoadWay], [ForkNo], [IP], [ToPoint], [BackPoint], [IsEnable], [Limit], [IsWeight]) VALUES (N'SrmState01', 0, N'SrmState', N'1号堆垛机状态', 1, 0, N'10.8.2.233', N'0', N'0', 1, 0, 0)
SET IDENTITY_INSERT [dbo].[I_Device_Address] ON 

INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1162, N'EntranceStationA01', N'MessageID', N'Read', N'DB3000', 40, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1163, N'EntranceStationA01', N'LoadingStatus', N'Read', N'DB3000', 42, 0, N'INT', N'装载状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1164, N'EntranceStationA01', N'ScannerNr', N'Read', N'DB3000', 44, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1165, N'EntranceStationA01', N'PalletID', N'Read', N'DB3000', 46, 0, N'CHAR', N'托盘号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1166, N'EntranceStationA01', N'Weight', N'Read', N'DB3000', 66, 0, N'INT', N'重量', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1167, N'EntranceStationA01', N'Length', N'Read', N'DB3000', 68, 0, N'INT', N'长度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1168, N'EntranceStationA01', N'Width', N'Read', N'DB3000', 70, 0, N'INT', N'宽度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1169, N'EntranceStationA01', N'Height', N'Read', N'DB3000', 72, 0, N'INT', N'高度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1170, N'EntranceStationA01', N'Retcode', N'Read', N'DB3000', 74, 0, N'INT', N'Retcode', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1172, N'EntranceStationA01', N'MessageID', N'Write', N'DB3102', 40, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1173, N'EntranceStationA01', N'LoadingStatus', N'Write', N'DB3102', 42, 0, N'INT', N'装载状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1174, N'EntranceStationA01', N'ScannerNr', N'Write', N'DB3102', 44, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1175, N'EntranceStationA01', N'PalletID', N'Write', N'DB3102', 46, 0, N'CHAR', N'托盘号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1176, N'EntranceStationA01', N'Weight', N'Write', N'DB3102', 66, 0, N'INT', N'重量', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1177, N'EntranceStationA01', N'Length', N'Write', N'DB3102', 68, 0, N'INT', N'长度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1178, N'EntranceStationA01', N'Width', N'Write', N'DB3102', 70, 0, N'INT', N'宽度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1179, N'EntranceStationA01', N'Height', N'Write', N'DB3102', 72, 0, N'INT', N'高度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1180, N'EntranceStationA01', N'DeStation', N'Write', N'DB3102', 74, 0, N'INT', N'目的地', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1242, N'OutStationA01', N'MessageID', N'Read', N'DB3000', 0, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1243, N'OutStationA01', N'LoadingStatus', N'Read', N'DB3000', 2, 0, N'INT', N'装载状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1244, N'OutStationA01', N'ScannerNr', N'Read', N'DB3000', 4, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1245, N'OutStationA01', N'PalletID', N'Read', N'DB3000', 6, 0, N'CHAR', N'托盘号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1246, N'OutStationA01', N'Weight', N'Read', N'DB3000', 26, 0, N'INT', N'重量', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1247, N'OutStationA01', N'Length', N'Read', N'DB3000', 28, 0, N'INT', N'长度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1248, N'OutStationA01', N'Width', N'Read', N'DB3000', 30, 0, N'INT', N'宽度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1249, N'OutStationA01', N'Height', N'Read', N'DB3000', 32, 0, N'INT', N'高度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1250, N'OutStationA01', N'Retcode', N'Read', N'DB3000', 34, 0, N'INT', N'Retcode', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1252, N'OutStationA01', N'MessageID', N'Write', N'DB3102', 0, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1253, N'OutStationA01', N'LoadingStatus', N'Write', N'DB3102', 2, 0, N'INT', N'装载状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1254, N'OutStationA01', N'ScannerNr', N'Write', N'DB3102', 4, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1255, N'OutStationA01', N'PalletID', N'Write', N'DB3102', 6, 0, N'CHAR', N'托盘号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1256, N'OutStationA01', N'Weight', N'Write', N'DB3102', 26, 0, N'INT', N'重量', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1257, N'OutStationA01', N'Length', N'Write', N'DB3102', 28, 0, N'INT', N'长度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1258, N'OutStationA01', N'Width', N'Write', N'DB3102', 30, 0, N'INT', N'宽度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1259, N'OutStationA01', N'Height', N'Write', N'DB3102', 32, 0, N'INT', N'高度', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1260, N'OutStationA01', N'DeStation', N'Write', N'DB3102', 34, 0, N'INT', N'目的地', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1322, N'ExitStationA01', N'MessageID', N'Read', N'DB3001', 0, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1324, N'ExitStationA01', N'ScannerNr', N'Read', N'DB3001', 4, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1326, N'ExitStationA01', N'PalletID', N'Read', N'DB3001', 6, 0, N'CHAR', N'条码', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1328, N'ExitStationA01', N'MessageID', N'Write', N'DB3101', 0, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1329, N'ExitStationA01', N'LoadingStatus', N'Write', N'DB3101', 2, 0, N'INT', N'装载状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1330, N'ExitStationA01', N'ScannerNr', N'Write', N'DB3101', 6, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1362, N'InStationA01', N'MessageID', N'Read', N'DB3001', 40, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1363, N'InStationA01', N'SortResualt', N'Read', N'DB3001', 42, 0, N'INT', N'分拣结果', N'1:成功2:失败', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1364, N'InStationA01', N'ScannerNr', N'Read', N'DB3001', 44, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1366, N'InStationA01', N'PalletID', N'Read', N'DB3001', 46, 0, N'CHAR', N'条码', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1368, N'InStationA01', N'MessageID', N'Write', N'DB3101', 10, 0, N'INT', N'报文名称', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1369, N'InStationA01', N'LoadingStatus', N'Write', N'DB3101', 12, 0, N'INT', N'装载状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1370, N'InStationA01', N'ScannerNr', N'Write', N'DB3101', 16, 0, N'INT', N'读码器编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1371, N'Srm01', N'SRM_NO', N'Read', N'DB101', 0, 0, N'INT', N'堆垛机PLC编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1372, N'Srm01', N'SRM_Mode', N'Read', N'DB101', 2, 0, N'INT', N'操作模式', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1373, N'Srm01', N'AxisY_Pos', N'Read', N'DB101', 4, 0, N'REAL', N'行走测距数据', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1374, N'Srm01', N'AxisY_NO', N'Read', N'DB101', 8, 0, N'INT', N'当前列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1375, N'Srm01', N'AxisZ_Pos', N'Read', N'DB101', 10, 0, N'REAL', N'升降测距数据', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1376, N'Srm01', N'AxisZ_NO', N'Read', N'DB101', 14, 0, N'INT', N'当前层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1377, N'Srm01', N'SRM_Err', N'Read', N'DB101', 16, 0, N'INT', N'堆垛机故障', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1378, N'Srm01', N'Axis_NO', N'Read', N'DB101', 18, 0, N'INT', N'0=无,1=前叉,2=后叉,3=双叉,', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1379, N'Srm01', N'Fork1_Pos', N'Read', N'DB101', 20, 0, N'REAL', N'货叉1测距数据', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1380, N'Srm01', N'Fork1_NO', N'Read', N'DB101', 24, 0, N'INT', N'当前排(1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1381, N'Srm01', N'Fork1_Goods', N'Read', N'DB101', 26, 0, N'INT', N'货叉1有货', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1382, N'Srm01', N'Fork1_Zero', N'Read', N'DB101', 28, 0, N'INT', N'货叉1在原点', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1383, N'Srm01', N'Fork1_Err', N'Read', N'DB101', 30, 0, N'INT', N'货叉1故障', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1384, N'Srm01', N'Fork1_EmptyOut', N'Read', N'DB101', 32, 0, N'INT', N'货叉1取货无货', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1385, N'Srm01', N'Fork1_FullIn', N'Read', N'DB101', 34, 0, N'INT', N'货叉1放货有货', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1386, N'Srm01', N'Fork1_State', N'Read', N'DB101', 36, 0, N'INT', N'货叉1执行状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1387, N'Srm01', N'Fork1_Task_Type', N'Read', N'DB101', 38, 0, N'INT', N'任务标志', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1388, N'Srm01', N'Fork1_Pick_AxisX_NO', N'Read', N'DB101', 40, 0, N'INT', N'取货地址:  (1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1389, N'Srm01', N'Fork1_Pick_AxisY_NO', N'Read', N'DB101', 42, 0, N'INT', N'取货地址: 列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1390, N'Srm01', N'Fork1_Pick_AxisZ_NO', N'Read', N'DB101', 44, 0, N'INT', N'取货地址: 层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1391, N'Srm01', N'Fork1_Release_AxisX_NO', N'Read', N'DB101', 46, 0, N'INT', N'放货地址:  (1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1392, N'Srm01', N'Fork1_Release_AxisY_NO', N'Read', N'DB101', 48, 0, N'INT', N'放货地址: 列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1393, N'Srm01', N'Fork1_Release_AxisZ_NO', N'Read', N'DB101', 50, 0, N'INT', N'放货地址: 层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1394, N'Srm01', N'Fork1_Code', N'Read', N'DB101', 52, 0, N'CHAR', N'前叉条码', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1395, N'Srm01', N'Fork1_TakeErr', N'Read', N'DB101', 72, 0, N'INT', N'Fork1_Spare1', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1396, N'Srm01', N'Fork1_Spare2', N'Read', N'DB101', 74, 0, N'INT', N'Fork1_Spare2', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1397, N'Srm01', N'Status_Port_OutStation', N'Read', N'DB101', 132, 0, N'INT', N'料台出口状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1398, N'Srm01', N'Status_Port2', N'Read', N'DB101', 134, 0, N'INT', N'料台出入口202状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1399, N'Srm01', N'Status_Port3', N'Read', N'DB101', 136, 0, N'INT', N'料台出入口203状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1400, N'Srm01', N'Status_Port4', N'Read', N'DB101', 138, 0, N'INT', N'料台出入口204状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1401, N'Srm01', N'Status_Port5', N'Read', N'DB101', 140, 0, N'INT', N'料台出入口205状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1402, N'Srm01', N'Status_Port6', N'Read', N'DB101', 142, 0, N'INT', N'料台出入口206状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1403, N'Srm01', N'Status_Port7', N'Read', N'DB101', 144, 0, N'INT', N'料台出入口207状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1404, N'Srm01', N'Status_Port8', N'Read', N'DB101', 146, 0, N'INT', N'料台出入口208状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1405, N'Srm01', N'Status_Port9', N'Read', N'DB101', 148, 0, N'INT', N'料台出入口209状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1406, N'Srm01', N'Status_Port10', N'Read', N'DB101', 150, 0, N'INT', N'料台出入口2101状态:0未知1空闲2占用', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1407, N'Srm01', N'Spare1', N'Read', N'DB101', 152, 0, N'INT', N'备用1', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1408, N'Srm01', N'Spare2', N'Read', N'DB101', 154, 0, N'INT', N'备用2', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1409, N'Srm01', N'Spare3', N'Read', N'DB101', 156, 0, N'INT', N'备用3', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1410, N'Srm01', N'Spare4', N'Read', N'DB101', 158, 0, N'INT', N'备用4', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1411, N'Srm01', N'Spare5', N'Read', N'DB101', 160, 0, N'INT', N'备用5', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1412, N'Srm01', N'Spare6', N'Read', N'DB101', 162, 0, N'INT', N'备用6', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1413, N'Srm01', N'Spare7', N'Read', N'DB101', 164, 0, N'INT', N'备用7', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1414, N'Srm01', N'Spare8', N'Read', N'DB101', 166, 0, N'INT', N'备用8', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1415, N'Srm01', N'Spare9', N'Read', N'DB101', 168, 0, N'INT', N'备用9', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1416, N'Srm01', N'Spare10', N'Read', N'DB101', 170, 0, N'INT', N'备用10', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1417, N'Srm01', N'Spare11', N'Read', N'DB101', 172, 0, N'INT', N'备用11', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1418, N'Srm01', N'Spare12', N'Read', N'DB101', 174, 0, N'INT', N'备用12', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1419, N'Srm01', N'Spare13', N'Read', N'DB101', 176, 0, N'INT', N'备用13', NULL, N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1420, N'Srm01', N'Spare14', N'Read', N'DB101', 178, 0, N'INT', N'备用14', NULL, N'1')
GO
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1421, N'Srm01', N'Error1', N'Read', N'DB101', 180, 0, N'INT', N'错误代码1', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1422, N'Srm01', N'Error2', N'Read', N'DB101', 182, 0, N'INT', N'错误代码2', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1423, N'Srm01', N'Error3', N'Read', N'DB101', 184, 0, N'INT', N'错误代码3', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1424, N'Srm01', N'Error4', N'Read', N'DB101', 186, 0, N'INT', N'错误代码4', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1425, N'Srm01', N'Error5', N'Read', N'DB101', 188, 0, N'INT', N'错误代码5', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1426, N'Srm01', N'Error6', N'Read', N'DB101', 190, 0, N'INT', N'错误代码6', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1427, N'Srm01', N'Error7', N'Read', N'DB101', 192, 0, N'INT', N'错误代码7', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1428, N'Srm01', N'Error8', N'Read', N'DB101', 194, 0, N'INT', N'错误代码8', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1429, N'Srm01', N'Error9', N'Read', N'DB101', 196, 0, N'INT', N'错误代码9', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1430, N'Srm01', N'Error10', N'Read', N'DB101', 198, 0, N'INT', N'错误代码10', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1431, N'Srm01', N'Heart', N'Read', N'DB101', 200, 0, N'INT', N'心跳累加 1-32767', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1437, N'Srm01', N'Fork2_Pos', N'Read', N'DB101', 20, 0, N'REAL', N'货叉2测距数据', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1438, N'Srm01', N'Fork2_NO', N'Read', N'DB101', 24, 0, N'INT', N'当前排(1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1439, N'Srm01', N'Fork2_Goods', N'Read', N'DB101', 26, 0, N'INT', N'货叉2有货', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1440, N'Srm01', N'Fork2_Zero', N'Read', N'DB101', 28, 0, N'INT', N'货叉1在原点', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1441, N'Srm01', N'Fork2_Err', N'Read', N'DB101', 30, 0, N'INT', N'货叉2故障', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1442, N'Srm01', N'Fork2_EmptyOut', N'Read', N'DB101', 32, 0, N'INT', N'货叉2取货无货', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1443, N'Srm01', N'Fork2_FullIn', N'Read', N'DB101', 34, 0, N'INT', N'货叉2放货有货', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1444, N'Srm01', N'Fork2_State', N'Read', N'DB101', 36, 0, N'INT', N'货叉2执行状态', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1445, N'Srm01', N'Fork2_Task_Type', N'Read', N'DB101', 38, 0, N'INT', N'任务标志', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1446, N'Srm01', N'Fork2_Pick_AxisX_NO', N'Read', N'DB101', 40, 0, N'INT', N'取货地址:  (1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1447, N'Srm01', N'Fork2_Pick_AxisY_NO', N'Read', N'DB101', 42, 0, N'INT', N'取货地址: 列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1448, N'Srm01', N'Fork2_Pick_AxisZ_NO', N'Read', N'DB101', 44, 0, N'INT', N'取货地址: 层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1449, N'Srm01', N'Fork2_Release_AxisX_NO', N'Read', N'DB101', 46, 0, N'INT', N'放货地址:  (1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1450, N'Srm01', N'Fork2_Release_AxisY_NO', N'Read', N'DB101', 48, 0, N'INT', N'放货地址: 列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1451, N'Srm01', N'Fork2_Release_AxisZ_NO', N'Read', N'DB101', 50, 0, N'INT', N'放货地址: 层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1452, N'Srm01', N'Fork2_Code', N'Read', N'DB101', 52, 0, N'CHAR', N'前叉条码', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1453, N'Srm01', N'Fork2_Spare1', N'Read', N'DB101', 72, 0, N'INT', N'Fork2_Spare1', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1454, N'Srm01', N'Fork2_Spare2', N'Read', N'DB101', 74, 0, N'INT', N'Fork2_Spare2', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1455, N'Srm01', N'SRM_NO', N'Write', N'DB100', 0, 0, N'INT', N'堆垛机编号', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1456, N'Srm01', N'SRM_Axis_NO', N'Write', N'DB100', 2, 0, N'INT', N'0=无,1=前叉,2=后叉,3=双叉,', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1457, N'Srm01', N'Fork1TaskType_1', N'Write', N'DB100', 4, 0, N'INT', N'前叉任务类型:0无任务1走2走取3走放4走取走放6删除任务10任务完成', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1458, N'Srm01', N'Fork1_Pick_AxisX_NO', N'Write', N'DB100', 6, 0, N'INT', N'前叉取货地址:  (1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1459, N'Srm01', N'Fork1_Pick_AxisY_NO', N'Write', N'DB100', 8, 0, N'INT', N'前叉取货地址: 列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1460, N'Srm01', N'Fork1_Pick_AxisZ_NO', N'Write', N'DB100', 10, 0, N'INT', N'前叉取货地址: 层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1461, N'Srm01', N'Fork1_Release_AxisX_NO', N'Write', N'DB100', 12, 0, N'INT', N'前叉放货地址:  (1=左1,2=右1,3=左2,4=右2)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1462, N'Srm01', N'Fork1_Release_AxisY_NO', N'Write', N'DB100', 14, 0, N'INT', N'前叉放货地址: 列(1-最远列)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1463, N'Srm01', N'Fork1_Release_AxisZ_NO', N'Write', N'DB100', 16, 0, N'INT', N'前叉放货地址: 层(1-最高层)', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1464, N'Srm01', N'Fork1_Code', N'Write', N'DB100', 18, 0, N'CHAR', N'前叉条码', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1465, N'Srm01', N'Fork1_Spare1', N'Write', N'DB100', 38, 0, N'INT', N'前叉备用1', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1466, N'Srm01', N'Fork1_Spare2', N'Write', N'DB100', 40, 0, N'INT', N'前叉备用2', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1467, N'Srm01', N'SRM_Spare1', N'Write', N'DB100', 80, 0, N'INT', N'备用1', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1468, N'Srm01', N'SRM_Spare2', N'Write', N'DB100', 82, 0, N'INT', N'备用2', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1471, N'Srm01', N'SRM_Spare3', N'Write', N'DB100', 84, 0, N'INT', N'备用3', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1472, N'Srm01', N'SRM_Spare4', N'Write', N'DB100', 86, 0, N'INT', N'备用4', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1473, N'Srm01', N'SRM_Spare5', N'Write', N'DB100', 88, 0, N'INT', N'备用5', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1474, N'Srm01', N'SRM_Spare6', N'Write', N'DB100', 90, 0, N'INT', N'备用6', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1475, N'Srm01', N'SRM_Spare7', N'Write', N'DB100', 92, 0, N'INT', N'备用7', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1476, N'Srm01', N'SRM_Spare8', N'Write', N'DB100', 94, 0, N'INT', N'备用8', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1477, N'Srm01', N'SRM_Spare9', N'Write', N'DB100', 96, 0, N'INT', N'备用9', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1478, N'Srm01', N'SRM_Spare10', N'Write', N'DB100', 98, 0, N'INT', N'备用2', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1479, N'Srm01', N'SRM_Heart', N'Write', N'DB100', 100, 0, N'INT', N'心跳累加 1-32767', N'', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1480, N'ExitStationA01', N'SortResualt', N'Read', N'DB3001', 2, 0, N'INT', N'分拣结果', N'1:成功0:失败', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1482, N'Srm01', N'Alarm18', N'Read', N'DB5015', 2, 1, N'BOOL', N'Alarm18货物左右超限', N'Alarm18货物左右超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1483, N'Srm01', N'Alarm19', N'Read', N'DB5015', 2, 2, N'BOOL', N'Alarm19行走过程中货物左右超限', N'Alarm19行走过程中货物左右超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1484, N'Srm01', N'Alarm20', N'Read', N'DB5015', 2, 3, N'BOOL', N'Alarm20货物宽度超限', N'Alarm20货物宽度超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1485, N'Srm01', N'Alarm21', N'Read', N'DB5015', 2, 4, N'BOOL', N'Alarm21前安全门报警', N'Alarm21前安全门报警', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1486, N'Srm01', N'Alarm22', N'Read', N'DB5015', 2, 5, N'BOOL', N'Alarm22控制柜门报警', N'Alarm22控制柜门报警', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1487, N'Srm01', N'Alarm23', N'Read', N'DB5015', 2, 6, N'BOOL', N'Alarm23HMI柜急停报警', N'Alarm23HMI柜急停报警', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1488, N'Srm01', N'Alarm24', N'Read', N'DB5015', 2, 7, N'BOOL', N'Alarm24CPU柜急停报警', N'Alarm24CPU柜急停报警', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1489, N'Srm01', N'Alarm25', N'Read', N'DB5015', 3, 0, N'BOOL', N'Alarm25库位高度超限', N'Alarm25库位高度超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1490, N'Srm01', N'Alarm28', N'Read', N'DB5015', 3, 3, N'BOOL', N'Alarm28放货时货物高度大于货架高度', N'Alarm28放货时货物高度大于货架高度', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1491, N'Srm01', N'Alarm29', N'Read', N'DB5015', 3, 4, N'BOOL', N'Alarm29后安全门报警', N'Alarm29后安全门报警', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1492, N'Srm01', N'Alarm32', N'Read', N'DB5015', 3, 7, N'BOOL', N'Alarm32行走电机报错', N'Alarm32行走电机报错', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1493, N'Srm01', N'Alarm33', N'Read', N'DB5015', 4, 0, N'BOOL', N'Alarm33行走电机运作超时', N'Alarm33行走电机运作超时', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1494, N'Srm01', N'Alarm35', N'Read', N'DB5015', 4, 2, N'BOOL', N'Alarm35行走电机通讯故障', N'Alarm35行走电机通讯故障', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1495, N'Srm01', N'Alarm36', N'Read', N'DB5015', 4, 3, N'BOOL', N'Alarm36行走轴实际位置超限', N'Alarm36行走轴实际位置超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1496, N'Srm01', N'Alarm45', N'Read', N'DB5015', 5, 4, N'BOOL', N'Alarm45行走轴激光测距报错', N'Alarm45行走轴激光测距报错', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1497, N'Srm01', N'Alarm46', N'Read', N'DB5015', 5, 5, N'BOOL', N'Alarm46行走移动时货叉不在原点', N'Alarm46行走移动时货叉不在原点', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1498, N'Srm01', N'Alarm52', N'Read', N'DB5015', 6, 3, N'BOOL', N'Alarm52升降电机报错', N'Alarm52升降电机报错', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1499, N'Srm01', N'Alarm55', N'Read', N'DB5015', 6, 6, N'BOOL', N'Alarm55升降电机通讯故障', N'Alarm55升降电机通讯故障', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1500, N'Srm01', N'Alarm56', N'Read', N'DB5015', 6, 7, N'BOOL', N'Alarm56升降轴实际位置超限', N'Alarm56升降轴实际位置超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1501, N'Srm01', N'Alarm65', N'Read', N'DB5015', 8, 0, N'BOOL', N'Alarm65升降位置扫码器报错', N'Alarm65升降位置扫码器报错', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1502, N'Srm01', N'Alarm66', N'Read', N'DB5015', 8, 1, N'BOOL', N'Alarm66升降移动时货叉不在原点', N'Alarm66升降移动时货叉不在原点', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1503, N'Srm01', N'Alarm72', N'Read', N'DB5015', 8, 7, N'BOOL', N'Alarm72货叉电机报错', N'Alarm72货叉电机报错', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1504, N'Srm01', N'Alarm75', N'Read', N'DB5015', 9, 2, N'BOOL', N'Alarm75货叉电机通讯故障', N'Alarm75货叉电机通讯故障', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1505, N'Srm01', N'Alarm80', N'Read', N'DB5015', 9, 7, N'BOOL', N'Alarm80货叉轴左超限', N'Alarm80货叉轴左超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1506, N'Srm01', N'Alarm81', N'Read', N'DB5015', 10, 0, N'BOOL', N'Alarm81货叉轴右超限', N'Alarm81货叉轴右超限', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1507, N'Srm01', N'Alarm86', N'Read', N'DB5015', 11, 5, N'BOOL', N'Alarm86输送线通讯心跳异常', N'Alarm86输送线通讯心跳异常', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1508, N'Srm01', N'Alarm90', N'Read', N'DB5015', 11, 1, N'BOOL', N'Alarm90 WCS通讯错误没有连接', N'Alarm90 WCS通讯错误没有连接', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1510, N'SrmState01', N'alarmNumberForStocker', N'Read', N'DB105', 2, 0, N'INT', N'alarmNumberForStocker', N'alarmNumberForStocker', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1512, N'SrmState01', N'faultTime', N'Read', N'DB105', 4, 0, N'DINT', N'faultTime', N'faultTime', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1513, N'SrmState01', N'standbyTime', N'Read', N'DB105', 8, 0, N'DINT', N'standbyTime', N'standbyTime', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1514, N'SrmState01', N'runTime', N'Read', N'DB105', 12, 0, N'DINT', N'runTime', N'runTime', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1515, N'ConveyorState01', N'alarmNumberForStocker', N'Read', N'DB105', 2, 0, N'INT', N'alarmNumberForStocker', N'alarmNumberForStocker', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1516, N'ConveyorState01', N'faultTime', N'Read', N'DB105', 4, 0, N'DINT', N'faultTime', N'faultTime', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1517, N'ConveyorState01', N'standbyTime', N'Read', N'DB105', 8, 0, N'DINT', N'standbyTime', N'standbyTime', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1518, N'ConveyorState01', N'runTime', N'Read', N'DB105', 12, 0, N'DINT', N'runTime', N'runTime', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1519, N'PointStateP1002', N'PalletNo', N'Read', N'DB1002', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1524, N'PointStateP1002', N'Destination', N'Read', N'DB1002', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1525, N'PointStateP1002', N'Mode', N'Read', N'DB1002', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1526, N'PointStateP1002', N'Type', N'Read', N'DB1002', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1528, N'PointStateP1002', N'Occupy', N'Read', N'DB1002', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1532, N'PointStateP1002', N'FaultState', N'Read', N'DB1002', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1533, N'PointStateP1003', N'PalletNo', N'Read', N'DB1003', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1534, N'PointStateP1003', N'Destination', N'Read', N'DB1003', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1535, N'PointStateP1003', N'Mode', N'Read', N'DB1003', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1536, N'PointStateP1003', N'Type', N'Read', N'DB1003', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1537, N'PointStateP1003', N'Occupy', N'Read', N'DB1003', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1538, N'PointStateP1003', N'FaultState', N'Read', N'DB1003', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
GO
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1539, N'PointStateP1004', N'PalletNo', N'Read', N'DB1004', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1540, N'PointStateP1004', N'Destination', N'Read', N'DB1004', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1541, N'PointStateP1004', N'Mode', N'Read', N'DB1004', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1542, N'PointStateP1004', N'Type', N'Read', N'DB1004', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1543, N'PointStateP1004', N'Occupy', N'Read', N'DB1004', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1544, N'PointStateP1004', N'FaultState', N'Read', N'DB1004', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1545, N'PointStateP1005', N'PalletNo', N'Read', N'DB1005', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1546, N'PointStateP1005', N'Destination', N'Read', N'DB1005', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1547, N'PointStateP1005', N'Mode', N'Read', N'DB1005', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1548, N'PointStateP1005', N'Type', N'Read', N'DB1005', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1549, N'PointStateP1005', N'Occupy', N'Read', N'DB1005', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1550, N'PointStateP1005', N'FaultState', N'Read', N'DB1005', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1551, N'PointStateP1007', N'PalletNo', N'Read', N'DB1007', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1552, N'PointStateP1007', N'Destination', N'Read', N'DB1007', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1553, N'PointStateP1007', N'Mode', N'Read', N'DB1007', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1554, N'PointStateP1007', N'Type', N'Read', N'DB1007', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1555, N'PointStateP1007', N'Occupy', N'Read', N'DB1007', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1556, N'PointStateP1007', N'FaultState', N'Read', N'DB1007', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1557, N'PointStateP1009', N'PalletNo', N'Read', N'DB1009', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1558, N'PointStateP1009', N'Destination', N'Read', N'DB1009', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1559, N'PointStateP1009', N'Mode', N'Read', N'DB1009', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1560, N'PointStateP1009', N'Type', N'Read', N'DB1009', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1561, N'PointStateP1009', N'Occupy', N'Read', N'DB1009', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1562, N'PointStateP1009', N'FaultState', N'Read', N'DB1009', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1563, N'PointStateP1010', N'PalletNo', N'Read', N'DB1010', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1564, N'PointStateP1010', N'Destination', N'Read', N'DB1010', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1565, N'PointStateP1010', N'Mode', N'Read', N'DB1010', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1566, N'PointStateP1010', N'Type', N'Read', N'DB1010', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1567, N'PointStateP1010', N'Occupy', N'Read', N'DB1010', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1568, N'PointStateP1010', N'FaultState', N'Read', N'DB1010', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1569, N'PointStateP1011', N'PalletNo', N'Read', N'DB1011', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1570, N'PointStateP1011', N'Destination', N'Read', N'DB1011', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1571, N'PointStateP1011', N'Mode', N'Read', N'DB1011', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1572, N'PointStateP1011', N'Type', N'Read', N'DB1011', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1573, N'PointStateP1011', N'Occupy', N'Read', N'DB1011', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1574, N'PointStateP1011', N'FaultState', N'Read', N'DB1011', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1575, N'PointStateP1012', N'PalletNo', N'Read', N'DB1012', 22, 0, N'CHAR', N'PalletNo', N'PalletNo', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1576, N'PointStateP1012', N'Destination', N'Read', N'DB1012', 42, 0, N'INT', N'Destination', N'托盘目的地', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1577, N'PointStateP1012', N'Mode', N'Read', N'DB1012', 44, 0, N'INT', N'Mode', N'输送线控制模式', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1578, N'PointStateP1012', N'Type', N'Read', N'DB1012', 46, 0, N'INT', N'Type', N'输送线类型', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1579, N'PointStateP1012', N'Occupy', N'Read', N'DB1012', 68, 1, N'BOOL', N'Occupy', N'站台占用', N'1')
INSERT [dbo].[I_Device_Address] ([ID], [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (1580, N'PointStateP1012', N'FaultState', N'Read', N'DB1012', 68, 2, N'BOOL', N'FaultState', N'站台故障状态', N'1')
SET IDENTITY_INSERT [dbo].[I_Device_Address] OFF
SET IDENTITY_INSERT [dbo].[I_Pose] ON 

INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2237, N'AA-01-01', N'WareCell', N'立库仓位', 1, 1, 1, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2238, N'AB-01-01', N'WareCell', N'立库仓位', 1, 2, 1, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2239, N'AA-01-02', N'WareCell', N'立库仓位', 1, 1, 1, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2240, N'AB-01-02', N'WareCell', N'立库仓位', 1, 2, 1, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2241, N'AA-01-03', N'WareCell', N'立库仓位', 1, 1, 1, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2242, N'AB-01-03', N'WareCell', N'立库仓位', 1, 2, 1, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2243, N'AA-01-04', N'WareCell', N'立库仓位', 1, 1, 1, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2244, N'AB-01-04', N'WareCell', N'立库仓位', 1, 2, 1, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2245, N'AA-01-05', N'WareCell', N'立库仓位', 1, 1, 1, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2246, N'AB-01-05', N'WareCell', N'立库仓位', 1, 2, 1, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2247, N'AA-01-06', N'WareCell', N'立库仓位', 1, 1, 1, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2248, N'AB-01-06', N'WareCell', N'立库仓位', 1, 2, 1, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2249, N'AA-01-07', N'WareCell', N'立库仓位', 1, 1, 1, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2250, N'AB-01-07', N'WareCell', N'立库仓位', 1, 2, 1, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2251, N'AA-01-08', N'WareCell', N'立库仓位', 1, 1, 1, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2252, N'AB-01-08', N'WareCell', N'立库仓位', 1, 2, 1, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2253, N'AA-01-09', N'WareCell', N'立库仓位', 1, 1, 1, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2254, N'AB-01-09', N'WareCell', N'立库仓位', 1, 2, 1, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2255, N'AA-01-10', N'WareCell', N'立库仓位', 1, 1, 1, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2256, N'AB-01-10', N'WareCell', N'立库仓位', 1, 2, 1, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2257, N'AA-02-01', N'WareCell', N'立库仓位', 1, 1, 2, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2258, N'AB-02-01', N'WareCell', N'立库仓位', 1, 2, 2, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2259, N'AA-02-02', N'WareCell', N'立库仓位', 1, 1, 2, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2260, N'AB-02-02', N'WareCell', N'立库仓位', 1, 2, 2, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2261, N'AA-02-03', N'WareCell', N'立库仓位', 1, 1, 2, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2262, N'AB-02-03', N'WareCell', N'立库仓位', 1, 2, 2, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2263, N'AA-02-04', N'WareCell', N'立库仓位', 1, 1, 2, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2264, N'AB-02-04', N'WareCell', N'立库仓位', 1, 2, 2, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2265, N'AA-02-05', N'WareCell', N'立库仓位', 1, 1, 2, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2266, N'AB-02-05', N'WareCell', N'立库仓位', 1, 2, 2, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2267, N'AA-02-06', N'WareCell', N'立库仓位', 1, 1, 2, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2268, N'AB-02-06', N'WareCell', N'立库仓位', 1, 2, 2, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2269, N'AA-02-07', N'WareCell', N'立库仓位', 1, 1, 2, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2270, N'AB-02-07', N'WareCell', N'立库仓位', 1, 2, 2, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2271, N'AA-02-08', N'WareCell', N'立库仓位', 1, 1, 2, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2272, N'AB-02-08', N'WareCell', N'立库仓位', 1, 2, 2, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2273, N'AA-02-09', N'WareCell', N'立库仓位', 1, 1, 2, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2274, N'AB-02-09', N'WareCell', N'立库仓位', 1, 2, 2, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2275, N'AA-02-10', N'WareCell', N'立库仓位', 1, 1, 2, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2276, N'AB-02-10', N'WareCell', N'立库仓位', 1, 2, 2, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2277, N'AA-03-01', N'WareCell', N'立库仓位', 1, 1, 3, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2278, N'AB-03-01', N'WareCell', N'立库仓位', 1, 2, 3, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2279, N'AA-03-02', N'WareCell', N'立库仓位', 1, 1, 3, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2280, N'AB-03-02', N'WareCell', N'立库仓位', 1, 2, 3, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2281, N'AA-03-03', N'WareCell', N'立库仓位', 1, 1, 3, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2282, N'AB-03-03', N'WareCell', N'立库仓位', 1, 2, 3, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2283, N'AA-03-04', N'WareCell', N'立库仓位', 1, 1, 3, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2284, N'AB-03-04', N'WareCell', N'立库仓位', 1, 2, 3, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2285, N'AA-03-05', N'WareCell', N'立库仓位', 1, 1, 3, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2286, N'AB-03-05', N'WareCell', N'立库仓位', 1, 2, 3, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2287, N'AA-03-06', N'WareCell', N'立库仓位', 1, 1, 3, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2288, N'AB-03-06', N'WareCell', N'立库仓位', 1, 2, 3, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2289, N'AA-03-07', N'WareCell', N'立库仓位', 1, 1, 3, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2290, N'AB-03-07', N'WareCell', N'立库仓位', 1, 2, 3, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2291, N'AA-03-08', N'WareCell', N'立库仓位', 1, 1, 3, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2292, N'AB-03-08', N'WareCell', N'立库仓位', 1, 2, 3, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2293, N'AA-03-09', N'WareCell', N'立库仓位', 1, 1, 3, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2294, N'AB-03-09', N'WareCell', N'立库仓位', 1, 2, 3, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2295, N'AA-03-10', N'WareCell', N'立库仓位', 1, 1, 3, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2296, N'AB-03-10', N'WareCell', N'立库仓位', 1, 2, 3, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2297, N'AA-04-01', N'WareCell', N'立库仓位', 1, 1, 4, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2298, N'AB-04-01', N'WareCell', N'立库仓位', 1, 2, 4, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2299, N'AA-04-02', N'WareCell', N'立库仓位', 1, 1, 4, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2300, N'AB-04-02', N'WareCell', N'立库仓位', 1, 2, 4, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2301, N'AA-04-03', N'WareCell', N'立库仓位', 1, 1, 4, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2302, N'AB-04-03', N'WareCell', N'立库仓位', 1, 2, 4, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2303, N'AA-04-04', N'WareCell', N'立库仓位', 1, 1, 4, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2304, N'AB-04-04', N'WareCell', N'立库仓位', 1, 2, 4, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2305, N'AA-04-05', N'WareCell', N'立库仓位', 1, 1, 4, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2306, N'AB-04-05', N'WareCell', N'立库仓位', 1, 2, 4, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2307, N'AA-04-06', N'WareCell', N'立库仓位', 1, 1, 4, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2308, N'AB-04-06', N'WareCell', N'立库仓位', 1, 2, 4, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2309, N'AA-04-07', N'WareCell', N'立库仓位', 1, 1, 4, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2310, N'AB-04-07', N'WareCell', N'立库仓位', 1, 2, 4, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2311, N'AA-04-08', N'WareCell', N'立库仓位', 1, 1, 4, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2312, N'AB-04-08', N'WareCell', N'立库仓位', 1, 2, 4, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2313, N'AA-04-09', N'WareCell', N'立库仓位', 1, 1, 4, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2314, N'AB-04-09', N'WareCell', N'立库仓位', 1, 2, 4, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2315, N'AA-04-10', N'WareCell', N'立库仓位', 1, 1, 4, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2316, N'AB-04-10', N'WareCell', N'立库仓位', 1, 2, 4, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2317, N'AA-05-01', N'WareCell', N'立库仓位', 1, 1, 5, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2318, N'AB-05-01', N'WareCell', N'立库仓位', 1, 2, 5, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2319, N'AA-05-02', N'WareCell', N'立库仓位', 1, 1, 5, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2320, N'AB-05-02', N'WareCell', N'立库仓位', 1, 2, 5, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2321, N'AA-05-03', N'WareCell', N'立库仓位', 1, 1, 5, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2322, N'AB-05-03', N'WareCell', N'立库仓位', 1, 2, 5, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2323, N'AA-05-04', N'WareCell', N'立库仓位', 1, 1, 5, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2324, N'AB-05-04', N'WareCell', N'立库仓位', 1, 2, 5, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2325, N'AA-05-05', N'WareCell', N'立库仓位', 1, 1, 5, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2326, N'AB-05-05', N'WareCell', N'立库仓位', 1, 2, 5, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2327, N'AA-05-06', N'WareCell', N'立库仓位', 1, 1, 5, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2328, N'AB-05-06', N'WareCell', N'立库仓位', 1, 2, 5, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2329, N'AA-05-07', N'WareCell', N'立库仓位', 1, 1, 5, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2330, N'AB-05-07', N'WareCell', N'立库仓位', 1, 2, 5, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2331, N'AA-05-08', N'WareCell', N'立库仓位', 1, 1, 5, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2332, N'AB-05-08', N'WareCell', N'立库仓位', 1, 2, 5, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2333, N'AA-05-09', N'WareCell', N'立库仓位', 1, 1, 5, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2334, N'AB-05-09', N'WareCell', N'立库仓位', 1, 2, 5, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2335, N'AA-05-10', N'WareCell', N'立库仓位', 1, 1, 5, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2336, N'AB-05-10', N'WareCell', N'立库仓位', 1, 2, 5, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2337, N'AA-06-01', N'WareCell', N'立库仓位', 1, 1, 6, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2338, N'AB-06-01', N'WareCell', N'立库仓位', 1, 2, 6, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2339, N'AA-06-02', N'WareCell', N'立库仓位', 1, 1, 6, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2340, N'AB-06-02', N'WareCell', N'立库仓位', 1, 2, 6, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2341, N'AA-06-03', N'WareCell', N'立库仓位', 1, 1, 6, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2342, N'AB-06-03', N'WareCell', N'立库仓位', 1, 2, 6, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2343, N'AA-06-04', N'WareCell', N'立库仓位', 1, 1, 6, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2344, N'AB-06-04', N'WareCell', N'立库仓位', 1, 2, 6, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2345, N'AA-06-05', N'WareCell', N'立库仓位', 1, 1, 6, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2346, N'AB-06-05', N'WareCell', N'立库仓位', 1, 2, 6, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2347, N'AA-06-06', N'WareCell', N'立库仓位', 1, 1, 6, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2348, N'AB-06-06', N'WareCell', N'立库仓位', 1, 2, 6, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2349, N'AA-06-07', N'WareCell', N'立库仓位', 1, 1, 6, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2350, N'AB-06-07', N'WareCell', N'立库仓位', 1, 2, 6, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2351, N'AA-06-08', N'WareCell', N'立库仓位', 1, 1, 6, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2352, N'AB-06-08', N'WareCell', N'立库仓位', 1, 2, 6, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2353, N'AA-06-09', N'WareCell', N'立库仓位', 1, 1, 6, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2354, N'AB-06-09', N'WareCell', N'立库仓位', 1, 2, 6, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2355, N'AA-06-10', N'WareCell', N'立库仓位', 1, 1, 6, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2356, N'AB-06-10', N'WareCell', N'立库仓位', 1, 2, 6, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2357, N'AA-07-01', N'WareCell', N'立库仓位', 1, 1, 7, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2358, N'AB-07-01', N'WareCell', N'立库仓位', 1, 2, 7, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2359, N'AA-07-02', N'WareCell', N'立库仓位', 1, 1, 7, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2360, N'AB-07-02', N'WareCell', N'立库仓位', 1, 2, 7, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2361, N'AA-07-03', N'WareCell', N'立库仓位', 1, 1, 7, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2362, N'AB-07-03', N'WareCell', N'立库仓位', 1, 2, 7, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2363, N'AA-07-04', N'WareCell', N'立库仓位', 1, 1, 7, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2364, N'AB-07-04', N'WareCell', N'立库仓位', 1, 2, 7, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2365, N'AA-07-05', N'WareCell', N'立库仓位', 1, 1, 7, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2366, N'AB-07-05', N'WareCell', N'立库仓位', 1, 2, 7, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2367, N'AA-07-06', N'WareCell', N'立库仓位', 1, 1, 7, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2368, N'AB-07-06', N'WareCell', N'立库仓位', 1, 2, 7, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2369, N'AA-07-07', N'WareCell', N'立库仓位', 1, 1, 7, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2370, N'AB-07-07', N'WareCell', N'立库仓位', 1, 2, 7, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2371, N'AA-07-08', N'WareCell', N'立库仓位', 1, 1, 7, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2372, N'AB-07-08', N'WareCell', N'立库仓位', 1, 2, 7, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2373, N'AA-07-09', N'WareCell', N'立库仓位', 1, 1, 7, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2374, N'AB-07-09', N'WareCell', N'立库仓位', 1, 2, 7, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2375, N'AA-07-10', N'WareCell', N'立库仓位', 1, 1, 7, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2376, N'AB-07-10', N'WareCell', N'立库仓位', 1, 2, 7, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2377, N'AA-08-01', N'WareCell', N'立库仓位', 1, 1, 8, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2378, N'AB-08-01', N'WareCell', N'立库仓位', 1, 2, 8, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2379, N'AA-08-02', N'WareCell', N'立库仓位', 1, 1, 8, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2380, N'AB-08-02', N'WareCell', N'立库仓位', 1, 2, 8, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2381, N'AA-08-03', N'WareCell', N'立库仓位', 1, 1, 8, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2382, N'AB-08-03', N'WareCell', N'立库仓位', 1, 2, 8, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2383, N'AA-08-04', N'WareCell', N'立库仓位', 1, 1, 8, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2384, N'AB-08-04', N'WareCell', N'立库仓位', 1, 2, 8, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2385, N'AA-08-05', N'WareCell', N'立库仓位', 1, 1, 8, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2386, N'AB-08-05', N'WareCell', N'立库仓位', 1, 2, 8, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2387, N'AA-08-06', N'WareCell', N'立库仓位', 1, 1, 8, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2388, N'AB-08-06', N'WareCell', N'立库仓位', 1, 2, 8, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2389, N'AA-08-07', N'WareCell', N'立库仓位', 1, 1, 8, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2390, N'AB-08-07', N'WareCell', N'立库仓位', 1, 2, 8, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2391, N'AA-08-08', N'WareCell', N'立库仓位', 1, 1, 8, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2392, N'AB-08-08', N'WareCell', N'立库仓位', 1, 2, 8, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2393, N'AA-08-09', N'WareCell', N'立库仓位', 1, 1, 8, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2394, N'AB-08-09', N'WareCell', N'立库仓位', 1, 2, 8, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2395, N'AA-08-10', N'WareCell', N'立库仓位', 1, 1, 8, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2396, N'AB-08-10', N'WareCell', N'立库仓位', 1, 2, 8, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2397, N'AA-09-01', N'WareCell', N'立库仓位', 1, 1, 9, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2398, N'AB-09-01', N'WareCell', N'立库仓位', 1, 2, 9, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2399, N'AA-09-02', N'WareCell', N'立库仓位', 1, 1, 9, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2400, N'AB-09-02', N'WareCell', N'立库仓位', 1, 2, 9, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2401, N'AA-09-03', N'WareCell', N'立库仓位', 1, 1, 9, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2402, N'AB-09-03', N'WareCell', N'立库仓位', 1, 2, 9, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2403, N'AA-09-04', N'WareCell', N'立库仓位', 1, 1, 9, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2404, N'AB-09-04', N'WareCell', N'立库仓位', 1, 2, 9, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2405, N'AA-09-05', N'WareCell', N'立库仓位', 1, 1, 9, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2406, N'AB-09-05', N'WareCell', N'立库仓位', 1, 2, 9, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2407, N'AA-09-06', N'WareCell', N'立库仓位', 1, 1, 9, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2408, N'AB-09-06', N'WareCell', N'立库仓位', 1, 2, 9, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2409, N'AA-09-07', N'WareCell', N'立库仓位', 1, 1, 9, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2410, N'AB-09-07', N'WareCell', N'立库仓位', 1, 2, 9, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2411, N'AA-09-08', N'WareCell', N'立库仓位', 1, 1, 9, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2412, N'AB-09-08', N'WareCell', N'立库仓位', 1, 2, 9, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2413, N'AA-09-09', N'WareCell', N'立库仓位', 1, 1, 9, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2414, N'AB-09-09', N'WareCell', N'立库仓位', 1, 2, 9, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2415, N'AA-09-10', N'WareCell', N'立库仓位', 1, 1, 9, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2416, N'AB-09-10', N'WareCell', N'立库仓位', 1, 2, 9, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2417, N'AA-10-01', N'WareCell', N'立库仓位', 1, 1, 10, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2418, N'AB-10-01', N'WareCell', N'立库仓位', 1, 2, 10, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2419, N'AA-10-02', N'WareCell', N'立库仓位', 1, 1, 10, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2420, N'AB-10-02', N'WareCell', N'立库仓位', 1, 2, 10, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2421, N'AA-10-03', N'WareCell', N'立库仓位', 1, 1, 10, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2422, N'AB-10-03', N'WareCell', N'立库仓位', 1, 2, 10, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2423, N'AA-10-04', N'WareCell', N'立库仓位', 1, 1, 10, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2424, N'AB-10-04', N'WareCell', N'立库仓位', 1, 2, 10, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2425, N'AA-10-05', N'WareCell', N'立库仓位', 1, 1, 10, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2426, N'AB-10-05', N'WareCell', N'立库仓位', 1, 2, 10, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2427, N'AA-10-06', N'WareCell', N'立库仓位', 1, 1, 10, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2428, N'AB-10-06', N'WareCell', N'立库仓位', 1, 2, 10, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2429, N'AA-10-07', N'WareCell', N'立库仓位', 1, 1, 10, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2430, N'AB-10-07', N'WareCell', N'立库仓位', 1, 2, 10, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2431, N'AA-10-08', N'WareCell', N'立库仓位', 1, 1, 10, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2432, N'AB-10-08', N'WareCell', N'立库仓位', 1, 2, 10, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2433, N'AA-10-09', N'WareCell', N'立库仓位', 1, 1, 10, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2434, N'AB-10-09', N'WareCell', N'立库仓位', 1, 2, 10, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2435, N'AA-10-10', N'WareCell', N'立库仓位', 1, 1, 10, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2436, N'AB-10-10', N'WareCell', N'立库仓位', 1, 2, 10, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2437, N'AA-11-01', N'WareCell', N'立库仓位', 1, 1, 11, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2438, N'AB-11-01', N'WareCell', N'立库仓位', 1, 2, 11, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2439, N'AA-11-02', N'WareCell', N'立库仓位', 1, 1, 11, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2440, N'AB-11-02', N'WareCell', N'立库仓位', 1, 2, 11, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2441, N'AA-11-03', N'WareCell', N'立库仓位', 1, 1, 11, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2442, N'AB-11-03', N'WareCell', N'立库仓位', 1, 2, 11, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2443, N'AA-11-04', N'WareCell', N'立库仓位', 1, 1, 11, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2444, N'AB-11-04', N'WareCell', N'立库仓位', 1, 2, 11, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2445, N'AA-11-05', N'WareCell', N'立库仓位', 1, 1, 11, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2446, N'AB-11-05', N'WareCell', N'立库仓位', 1, 2, 11, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2447, N'AA-11-06', N'WareCell', N'立库仓位', 1, 1, 11, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2448, N'AB-11-06', N'WareCell', N'立库仓位', 1, 2, 11, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2449, N'AA-11-07', N'WareCell', N'立库仓位', 1, 1, 11, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2450, N'AB-11-07', N'WareCell', N'立库仓位', 1, 2, 11, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2451, N'AA-11-08', N'WareCell', N'立库仓位', 1, 1, 11, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2452, N'AB-11-08', N'WareCell', N'立库仓位', 1, 2, 11, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2453, N'AA-11-09', N'WareCell', N'立库仓位', 1, 1, 11, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2454, N'AB-11-09', N'WareCell', N'立库仓位', 1, 2, 11, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2455, N'AA-11-10', N'WareCell', N'立库仓位', 1, 1, 11, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2456, N'AB-11-10', N'WareCell', N'立库仓位', 1, 2, 11, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2457, N'AA-12-01', N'WareCell', N'立库仓位', 1, 1, 12, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2458, N'AB-12-01', N'WareCell', N'立库仓位', 1, 2, 12, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2459, N'AA-12-02', N'WareCell', N'立库仓位', 1, 1, 12, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2460, N'AB-12-02', N'WareCell', N'立库仓位', 1, 2, 12, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2461, N'AA-12-03', N'WareCell', N'立库仓位', 1, 1, 12, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2462, N'AB-12-03', N'WareCell', N'立库仓位', 1, 2, 12, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2463, N'AA-12-04', N'WareCell', N'立库仓位', 1, 1, 12, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2464, N'AB-12-04', N'WareCell', N'立库仓位', 1, 2, 12, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2465, N'AA-12-05', N'WareCell', N'立库仓位', 1, 1, 12, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2466, N'AB-12-05', N'WareCell', N'立库仓位', 1, 2, 12, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2467, N'AA-12-06', N'WareCell', N'立库仓位', 1, 1, 12, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2468, N'AB-12-06', N'WareCell', N'立库仓位', 1, 2, 12, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2469, N'AA-12-07', N'WareCell', N'立库仓位', 1, 1, 12, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2470, N'AB-12-07', N'WareCell', N'立库仓位', 1, 2, 12, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2471, N'AA-12-08', N'WareCell', N'立库仓位', 1, 1, 12, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2472, N'AB-12-08', N'WareCell', N'立库仓位', 1, 2, 12, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2473, N'AA-12-09', N'WareCell', N'立库仓位', 1, 1, 12, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2474, N'AB-12-09', N'WareCell', N'立库仓位', 1, 2, 12, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2475, N'AA-12-10', N'WareCell', N'立库仓位', 1, 1, 12, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2476, N'AB-12-10', N'WareCell', N'立库仓位', 1, 2, 12, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2477, N'AA-13-01', N'WareCell', N'立库仓位', 1, 1, 13, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2478, N'AB-13-01', N'WareCell', N'立库仓位', 1, 2, 13, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2479, N'AA-13-02', N'WareCell', N'立库仓位', 1, 1, 13, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2480, N'AB-13-02', N'WareCell', N'立库仓位', 1, 2, 13, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2481, N'AA-13-03', N'WareCell', N'立库仓位', 1, 1, 13, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2482, N'AB-13-03', N'WareCell', N'立库仓位', 1, 2, 13, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2483, N'AA-13-04', N'WareCell', N'立库仓位', 1, 1, 13, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2484, N'AB-13-04', N'WareCell', N'立库仓位', 1, 2, 13, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2485, N'AA-13-05', N'WareCell', N'立库仓位', 1, 1, 13, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2486, N'AB-13-05', N'WareCell', N'立库仓位', 1, 2, 13, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2487, N'AA-13-06', N'WareCell', N'立库仓位', 1, 1, 13, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2488, N'AB-13-06', N'WareCell', N'立库仓位', 1, 2, 13, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2489, N'AA-13-07', N'WareCell', N'立库仓位', 1, 1, 13, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2490, N'AB-13-07', N'WareCell', N'立库仓位', 1, 2, 13, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2491, N'AA-13-08', N'WareCell', N'立库仓位', 1, 1, 13, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2492, N'AB-13-08', N'WareCell', N'立库仓位', 1, 2, 13, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2493, N'AA-13-09', N'WareCell', N'立库仓位', 1, 1, 13, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2494, N'AB-13-09', N'WareCell', N'立库仓位', 1, 2, 13, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2495, N'AA-13-10', N'WareCell', N'立库仓位', 1, 1, 13, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2496, N'AB-13-10', N'WareCell', N'立库仓位', 1, 2, 13, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2497, N'AA-14-01', N'WareCell', N'立库仓位', 1, 1, 14, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2498, N'AB-14-01', N'WareCell', N'立库仓位', 1, 2, 14, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2499, N'AA-14-02', N'WareCell', N'立库仓位', 1, 1, 14, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2500, N'AB-14-02', N'WareCell', N'立库仓位', 1, 2, 14, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2501, N'AA-14-03', N'WareCell', N'立库仓位', 1, 1, 14, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2502, N'AB-14-03', N'WareCell', N'立库仓位', 1, 2, 14, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2503, N'AA-14-04', N'WareCell', N'立库仓位', 1, 1, 14, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2504, N'AB-14-04', N'WareCell', N'立库仓位', 1, 2, 14, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2505, N'AA-14-05', N'WareCell', N'立库仓位', 1, 1, 14, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2506, N'AB-14-05', N'WareCell', N'立库仓位', 1, 2, 14, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2507, N'AA-14-06', N'WareCell', N'立库仓位', 1, 1, 14, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2508, N'AB-14-06', N'WareCell', N'立库仓位', 1, 2, 14, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2509, N'AA-14-07', N'WareCell', N'立库仓位', 1, 1, 14, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2510, N'AB-14-07', N'WareCell', N'立库仓位', 1, 2, 14, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2511, N'AA-14-08', N'WareCell', N'立库仓位', 1, 1, 14, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2512, N'AB-14-08', N'WareCell', N'立库仓位', 1, 2, 14, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2513, N'AA-14-09', N'WareCell', N'立库仓位', 1, 1, 14, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2514, N'AB-14-09', N'WareCell', N'立库仓位', 1, 2, 14, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2515, N'AA-14-10', N'WareCell', N'立库仓位', 1, 1, 14, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2516, N'AB-14-10', N'WareCell', N'立库仓位', 1, 2, 14, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2517, N'AA-15-01', N'WareCell', N'立库仓位', 1, 1, 15, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2518, N'AB-15-01', N'WareCell', N'立库仓位', 1, 2, 15, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2519, N'AA-15-02', N'WareCell', N'立库仓位', 1, 1, 15, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2520, N'AB-15-02', N'WareCell', N'立库仓位', 1, 2, 15, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2521, N'AA-15-03', N'WareCell', N'立库仓位', 1, 1, 15, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2522, N'AB-15-03', N'WareCell', N'立库仓位', 1, 2, 15, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2523, N'AA-15-04', N'WareCell', N'立库仓位', 1, 1, 15, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2524, N'AB-15-04', N'WareCell', N'立库仓位', 1, 2, 15, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2525, N'AA-15-05', N'WareCell', N'立库仓位', 1, 1, 15, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2526, N'AB-15-05', N'WareCell', N'立库仓位', 1, 2, 15, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2527, N'AA-15-06', N'WareCell', N'立库仓位', 1, 1, 15, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2528, N'AB-15-06', N'WareCell', N'立库仓位', 1, 2, 15, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2529, N'AA-15-07', N'WareCell', N'立库仓位', 1, 1, 15, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2530, N'AB-15-07', N'WareCell', N'立库仓位', 1, 2, 15, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2531, N'AA-15-08', N'WareCell', N'立库仓位', 1, 1, 15, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2532, N'AB-15-08', N'WareCell', N'立库仓位', 1, 2, 15, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2533, N'AA-15-09', N'WareCell', N'立库仓位', 1, 1, 15, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2534, N'AB-15-09', N'WareCell', N'立库仓位', 1, 2, 15, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2535, N'AA-15-10', N'WareCell', N'立库仓位', 1, 1, 15, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2536, N'AB-15-10', N'WareCell', N'立库仓位', 1, 2, 15, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2537, N'AA-16-01', N'WareCell', N'立库仓位', 1, 1, 16, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2538, N'AB-16-01', N'WareCell', N'立库仓位', 1, 2, 16, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2539, N'AA-16-02', N'WareCell', N'立库仓位', 1, 1, 16, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2540, N'AB-16-02', N'WareCell', N'立库仓位', 1, 2, 16, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2541, N'AA-16-03', N'WareCell', N'立库仓位', 1, 1, 16, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2542, N'AB-16-03', N'WareCell', N'立库仓位', 1, 2, 16, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2543, N'AA-16-04', N'WareCell', N'立库仓位', 1, 1, 16, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2544, N'AB-16-04', N'WareCell', N'立库仓位', 1, 2, 16, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2545, N'AA-16-05', N'WareCell', N'立库仓位', 1, 1, 16, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2546, N'AB-16-05', N'WareCell', N'立库仓位', 1, 2, 16, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2547, N'AA-16-06', N'WareCell', N'立库仓位', 1, 1, 16, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2548, N'AB-16-06', N'WareCell', N'立库仓位', 1, 2, 16, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2549, N'AA-16-07', N'WareCell', N'立库仓位', 1, 1, 16, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2550, N'AB-16-07', N'WareCell', N'立库仓位', 1, 2, 16, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2551, N'AA-16-08', N'WareCell', N'立库仓位', 1, 1, 16, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2552, N'AB-16-08', N'WareCell', N'立库仓位', 1, 2, 16, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2553, N'AA-16-09', N'WareCell', N'立库仓位', 1, 1, 16, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2554, N'AB-16-09', N'WareCell', N'立库仓位', 1, 2, 16, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2555, N'AA-16-10', N'WareCell', N'立库仓位', 1, 1, 16, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2556, N'AB-16-10', N'WareCell', N'立库仓位', 1, 2, 16, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2557, N'AA-17-01', N'WareCell', N'立库仓位', 1, 1, 17, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2558, N'AB-17-01', N'WareCell', N'立库仓位', 1, 2, 17, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2559, N'AA-17-02', N'WareCell', N'立库仓位', 1, 1, 17, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2560, N'AB-17-02', N'WareCell', N'立库仓位', 1, 2, 17, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2561, N'AA-17-03', N'WareCell', N'立库仓位', 1, 1, 17, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2562, N'AB-17-03', N'WareCell', N'立库仓位', 1, 2, 17, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2563, N'AA-17-04', N'WareCell', N'立库仓位', 1, 1, 17, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2564, N'AB-17-04', N'WareCell', N'立库仓位', 1, 2, 17, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2565, N'AA-17-05', N'WareCell', N'立库仓位', 1, 1, 17, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2566, N'AB-17-05', N'WareCell', N'立库仓位', 1, 2, 17, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2567, N'AA-17-06', N'WareCell', N'立库仓位', 1, 1, 17, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2568, N'AB-17-06', N'WareCell', N'立库仓位', 1, 2, 17, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2569, N'AA-17-07', N'WareCell', N'立库仓位', 1, 1, 17, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2570, N'AB-17-07', N'WareCell', N'立库仓位', 1, 2, 17, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2571, N'AA-17-08', N'WareCell', N'立库仓位', 1, 1, 17, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2572, N'AB-17-08', N'WareCell', N'立库仓位', 1, 2, 17, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2573, N'AA-17-09', N'WareCell', N'立库仓位', 1, 1, 17, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2574, N'AB-17-09', N'WareCell', N'立库仓位', 1, 2, 17, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2575, N'AA-17-10', N'WareCell', N'立库仓位', 1, 1, 17, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2576, N'AB-17-10', N'WareCell', N'立库仓位', 1, 2, 17, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2577, N'AA-18-01', N'WareCell', N'立库仓位', 1, 1, 18, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2578, N'AB-18-01', N'WareCell', N'立库仓位', 1, 2, 18, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2579, N'AA-18-02', N'WareCell', N'立库仓位', 1, 1, 18, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2580, N'AB-18-02', N'WareCell', N'立库仓位', 1, 2, 18, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2581, N'AA-18-03', N'WareCell', N'立库仓位', 1, 1, 18, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2582, N'AB-18-03', N'WareCell', N'立库仓位', 1, 2, 18, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2583, N'AA-18-04', N'WareCell', N'立库仓位', 1, 1, 18, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2584, N'AB-18-04', N'WareCell', N'立库仓位', 1, 2, 18, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2585, N'AA-18-05', N'WareCell', N'立库仓位', 1, 1, 18, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2586, N'AB-18-05', N'WareCell', N'立库仓位', 1, 2, 18, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2587, N'AA-18-06', N'WareCell', N'立库仓位', 1, 1, 18, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2588, N'AB-18-06', N'WareCell', N'立库仓位', 1, 2, 18, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2589, N'AA-18-07', N'WareCell', N'立库仓位', 1, 1, 18, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2590, N'AB-18-07', N'WareCell', N'立库仓位', 1, 2, 18, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2591, N'AA-18-08', N'WareCell', N'立库仓位', 1, 1, 18, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2592, N'AB-18-08', N'WareCell', N'立库仓位', 1, 2, 18, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2593, N'AA-18-09', N'WareCell', N'立库仓位', 1, 1, 18, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2594, N'AB-18-09', N'WareCell', N'立库仓位', 1, 2, 18, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2595, N'AA-18-10', N'WareCell', N'立库仓位', 1, 1, 18, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2596, N'AB-18-10', N'WareCell', N'立库仓位', 1, 2, 18, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2597, N'AA-19-01', N'WareCell', N'立库仓位', 1, 1, 19, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2598, N'AB-19-01', N'WareCell', N'立库仓位', 1, 2, 19, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2599, N'AA-19-02', N'WareCell', N'立库仓位', 1, 1, 19, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2600, N'AB-19-02', N'WareCell', N'立库仓位', 1, 2, 19, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2601, N'AA-19-03', N'WareCell', N'立库仓位', 1, 1, 19, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2602, N'AB-19-03', N'WareCell', N'立库仓位', 1, 2, 19, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2603, N'AA-19-04', N'WareCell', N'立库仓位', 1, 1, 19, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2604, N'AB-19-04', N'WareCell', N'立库仓位', 1, 2, 19, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2605, N'AA-19-05', N'WareCell', N'立库仓位', 1, 1, 19, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2606, N'AB-19-05', N'WareCell', N'立库仓位', 1, 2, 19, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2607, N'AA-19-06', N'WareCell', N'立库仓位', 1, 1, 19, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2608, N'AB-19-06', N'WareCell', N'立库仓位', 1, 2, 19, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2609, N'AA-19-07', N'WareCell', N'立库仓位', 1, 1, 19, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2610, N'AB-19-07', N'WareCell', N'立库仓位', 1, 2, 19, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2611, N'AA-19-08', N'WareCell', N'立库仓位', 1, 1, 19, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2612, N'AB-19-08', N'WareCell', N'立库仓位', 1, 2, 19, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2613, N'AA-19-09', N'WareCell', N'立库仓位', 1, 1, 19, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2614, N'AB-19-09', N'WareCell', N'立库仓位', 1, 2, 19, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2615, N'AA-19-10', N'WareCell', N'立库仓位', 1, 1, 19, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2616, N'AB-19-10', N'WareCell', N'立库仓位', 1, 2, 19, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2617, N'AA-20-01', N'WareCell', N'立库仓位', 1, 1, 20, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2618, N'AB-20-01', N'WareCell', N'立库仓位', 1, 2, 20, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2619, N'AA-20-02', N'WareCell', N'立库仓位', 1, 1, 20, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2620, N'AB-20-02', N'WareCell', N'立库仓位', 1, 2, 20, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2621, N'AA-20-03', N'WareCell', N'立库仓位', 1, 1, 20, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2622, N'AB-20-03', N'WareCell', N'立库仓位', 1, 2, 20, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2623, N'AA-20-04', N'WareCell', N'立库仓位', 1, 1, 20, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2624, N'AB-20-04', N'WareCell', N'立库仓位', 1, 2, 20, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2625, N'AA-20-05', N'WareCell', N'立库仓位', 1, 1, 20, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2626, N'AB-20-05', N'WareCell', N'立库仓位', 1, 2, 20, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2627, N'AA-20-06', N'WareCell', N'立库仓位', 1, 1, 20, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2628, N'AB-20-06', N'WareCell', N'立库仓位', 1, 2, 20, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2629, N'AA-20-07', N'WareCell', N'立库仓位', 1, 1, 20, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2630, N'AB-20-07', N'WareCell', N'立库仓位', 1, 2, 20, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2631, N'AA-20-08', N'WareCell', N'立库仓位', 1, 1, 20, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2632, N'AB-20-08', N'WareCell', N'立库仓位', 1, 2, 20, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2633, N'AA-20-09', N'WareCell', N'立库仓位', 1, 1, 20, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2634, N'AB-20-09', N'WareCell', N'立库仓位', 1, 2, 20, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2635, N'AA-20-10', N'WareCell', N'立库仓位', 1, 1, 20, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2636, N'AB-20-10', N'WareCell', N'立库仓位', 1, 2, 20, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2637, N'AC-01-01', N'WareCell', N'立库仓位', 1, 3, 1, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2638, N'AD-01-01', N'WareCell', N'立库仓位', 1, 4, 1, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2639, N'AC-01-02', N'WareCell', N'立库仓位', 1, 3, 1, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2640, N'AD-01-02', N'WareCell', N'立库仓位', 1, 4, 1, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2641, N'AC-01-03', N'WareCell', N'立库仓位', 1, 3, 1, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2642, N'AD-01-03', N'WareCell', N'立库仓位', 1, 4, 1, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2643, N'AC-01-04', N'WareCell', N'立库仓位', 1, 3, 1, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2644, N'AD-01-04', N'WareCell', N'立库仓位', 1, 4, 1, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2645, N'AC-01-05', N'WareCell', N'立库仓位', 1, 3, 1, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2646, N'AD-01-05', N'WareCell', N'立库仓位', 1, 4, 1, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2647, N'AC-01-06', N'WareCell', N'立库仓位', 1, 3, 1, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2648, N'AD-01-06', N'WareCell', N'立库仓位', 1, 4, 1, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2649, N'AC-01-07', N'WareCell', N'立库仓位', 1, 3, 1, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2650, N'AD-01-07', N'WareCell', N'立库仓位', 1, 4, 1, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2651, N'AC-01-08', N'WareCell', N'立库仓位', 1, 3, 1, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2652, N'AD-01-08', N'WareCell', N'立库仓位', 1, 4, 1, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2653, N'AC-01-09', N'WareCell', N'立库仓位', 1, 3, 1, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2654, N'AD-01-09', N'WareCell', N'立库仓位', 1, 4, 1, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2655, N'AC-01-10', N'WareCell', N'立库仓位', 1, 3, 1, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2656, N'AD-01-10', N'WareCell', N'立库仓位', 1, 4, 1, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2657, N'AC-02-01', N'WareCell', N'立库仓位', 1, 3, 2, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2658, N'AD-02-01', N'WareCell', N'立库仓位', 1, 4, 2, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2659, N'AC-02-02', N'WareCell', N'立库仓位', 1, 3, 2, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2660, N'AD-02-02', N'WareCell', N'立库仓位', 1, 4, 2, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2661, N'AC-02-03', N'WareCell', N'立库仓位', 1, 3, 2, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2662, N'AD-02-03', N'WareCell', N'立库仓位', 1, 4, 2, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2663, N'AC-02-04', N'WareCell', N'立库仓位', 1, 3, 2, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2664, N'AD-02-04', N'WareCell', N'立库仓位', 1, 4, 2, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2665, N'AC-02-05', N'WareCell', N'立库仓位', 1, 3, 2, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2666, N'AD-02-05', N'WareCell', N'立库仓位', 1, 4, 2, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2667, N'AC-02-06', N'WareCell', N'立库仓位', 1, 3, 2, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2668, N'AD-02-06', N'WareCell', N'立库仓位', 1, 4, 2, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2669, N'AC-02-07', N'WareCell', N'立库仓位', 1, 3, 2, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2670, N'AD-02-07', N'WareCell', N'立库仓位', 1, 4, 2, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2671, N'AC-02-08', N'WareCell', N'立库仓位', 1, 3, 2, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2672, N'AD-02-08', N'WareCell', N'立库仓位', 1, 4, 2, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2673, N'AC-02-09', N'WareCell', N'立库仓位', 1, 3, 2, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2674, N'AD-02-09', N'WareCell', N'立库仓位', 1, 4, 2, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2675, N'AC-02-10', N'WareCell', N'立库仓位', 1, 3, 2, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2676, N'AD-02-10', N'WareCell', N'立库仓位', 1, 4, 2, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2677, N'AC-03-01', N'WareCell', N'立库仓位', 1, 3, 3, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2678, N'AD-03-01', N'WareCell', N'立库仓位', 1, 4, 3, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2679, N'AC-03-02', N'WareCell', N'立库仓位', 1, 3, 3, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2680, N'AD-03-02', N'WareCell', N'立库仓位', 1, 4, 3, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2681, N'AC-03-03', N'WareCell', N'立库仓位', 1, 3, 3, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2682, N'AD-03-03', N'WareCell', N'立库仓位', 1, 4, 3, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2683, N'AC-03-04', N'WareCell', N'立库仓位', 1, 3, 3, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2684, N'AD-03-04', N'WareCell', N'立库仓位', 1, 4, 3, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2685, N'AC-03-05', N'WareCell', N'立库仓位', 1, 3, 3, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2686, N'AD-03-05', N'WareCell', N'立库仓位', 1, 4, 3, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2687, N'AC-03-06', N'WareCell', N'立库仓位', 1, 3, 3, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2688, N'AD-03-06', N'WareCell', N'立库仓位', 1, 4, 3, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2689, N'AC-03-07', N'WareCell', N'立库仓位', 1, 3, 3, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2690, N'AD-03-07', N'WareCell', N'立库仓位', 1, 4, 3, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2691, N'AC-03-08', N'WareCell', N'立库仓位', 1, 3, 3, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2692, N'AD-03-08', N'WareCell', N'立库仓位', 1, 4, 3, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2693, N'AC-03-09', N'WareCell', N'立库仓位', 1, 3, 3, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2694, N'AD-03-09', N'WareCell', N'立库仓位', 1, 4, 3, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2695, N'AC-03-10', N'WareCell', N'立库仓位', 1, 3, 3, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2696, N'AD-03-10', N'WareCell', N'立库仓位', 1, 4, 3, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2697, N'AC-04-01', N'WareCell', N'立库仓位', 1, 3, 4, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2698, N'AD-04-01', N'WareCell', N'立库仓位', 1, 4, 4, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2699, N'AC-04-02', N'WareCell', N'立库仓位', 1, 3, 4, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2700, N'AD-04-02', N'WareCell', N'立库仓位', 1, 4, 4, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2701, N'AC-04-03', N'WareCell', N'立库仓位', 1, 3, 4, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2702, N'AD-04-03', N'WareCell', N'立库仓位', 1, 4, 4, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2703, N'AC-04-04', N'WareCell', N'立库仓位', 1, 3, 4, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2704, N'AD-04-04', N'WareCell', N'立库仓位', 1, 4, 4, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2705, N'AC-04-05', N'WareCell', N'立库仓位', 1, 3, 4, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2706, N'AD-04-05', N'WareCell', N'立库仓位', 1, 4, 4, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2707, N'AC-04-06', N'WareCell', N'立库仓位', 1, 3, 4, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2708, N'AD-04-06', N'WareCell', N'立库仓位', 1, 4, 4, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2709, N'AC-04-07', N'WareCell', N'立库仓位', 1, 3, 4, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2710, N'AD-04-07', N'WareCell', N'立库仓位', 1, 4, 4, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2711, N'AC-04-08', N'WareCell', N'立库仓位', 1, 3, 4, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2712, N'AD-04-08', N'WareCell', N'立库仓位', 1, 4, 4, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2713, N'AC-04-09', N'WareCell', N'立库仓位', 1, 3, 4, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2714, N'AD-04-09', N'WareCell', N'立库仓位', 1, 4, 4, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2715, N'AC-04-10', N'WareCell', N'立库仓位', 1, 3, 4, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2716, N'AD-04-10', N'WareCell', N'立库仓位', 1, 4, 4, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2717, N'AC-05-01', N'WareCell', N'立库仓位', 1, 3, 5, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2718, N'AD-05-01', N'WareCell', N'立库仓位', 1, 4, 5, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2719, N'AC-05-02', N'WareCell', N'立库仓位', 1, 3, 5, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2720, N'AD-05-02', N'WareCell', N'立库仓位', 1, 4, 5, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2721, N'AC-05-03', N'WareCell', N'立库仓位', 1, 3, 5, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2722, N'AD-05-03', N'WareCell', N'立库仓位', 1, 4, 5, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2723, N'AC-05-04', N'WareCell', N'立库仓位', 1, 3, 5, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2724, N'AD-05-04', N'WareCell', N'立库仓位', 1, 4, 5, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2725, N'AC-05-05', N'WareCell', N'立库仓位', 1, 3, 5, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2726, N'AD-05-05', N'WareCell', N'立库仓位', 1, 4, 5, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2727, N'AC-05-06', N'WareCell', N'立库仓位', 1, 3, 5, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2728, N'AD-05-06', N'WareCell', N'立库仓位', 1, 4, 5, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2729, N'AC-05-07', N'WareCell', N'立库仓位', 1, 3, 5, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2730, N'AD-05-07', N'WareCell', N'立库仓位', 1, 4, 5, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2731, N'AC-05-08', N'WareCell', N'立库仓位', 1, 3, 5, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2732, N'AD-05-08', N'WareCell', N'立库仓位', 1, 4, 5, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2733, N'AC-05-09', N'WareCell', N'立库仓位', 1, 3, 5, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2734, N'AD-05-09', N'WareCell', N'立库仓位', 1, 4, 5, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2735, N'AC-05-10', N'WareCell', N'立库仓位', 1, 3, 5, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2736, N'AD-05-10', N'WareCell', N'立库仓位', 1, 4, 5, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2737, N'AC-06-01', N'WareCell', N'立库仓位', 1, 3, 6, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2738, N'AD-06-01', N'WareCell', N'立库仓位', 1, 4, 6, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2739, N'AC-06-02', N'WareCell', N'立库仓位', 1, 3, 6, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2740, N'AD-06-02', N'WareCell', N'立库仓位', 1, 4, 6, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2741, N'AC-06-03', N'WareCell', N'立库仓位', 1, 3, 6, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2742, N'AD-06-03', N'WareCell', N'立库仓位', 1, 4, 6, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2743, N'AC-06-04', N'WareCell', N'立库仓位', 1, 3, 6, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2744, N'AD-06-04', N'WareCell', N'立库仓位', 1, 4, 6, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2745, N'AC-06-05', N'WareCell', N'立库仓位', 1, 3, 6, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2746, N'AD-06-05', N'WareCell', N'立库仓位', 1, 4, 6, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2747, N'AC-06-06', N'WareCell', N'立库仓位', 1, 3, 6, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2748, N'AD-06-06', N'WareCell', N'立库仓位', 1, 4, 6, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2749, N'AC-06-07', N'WareCell', N'立库仓位', 1, 3, 6, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2750, N'AD-06-07', N'WareCell', N'立库仓位', 1, 4, 6, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2751, N'AC-06-08', N'WareCell', N'立库仓位', 1, 3, 6, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2752, N'AD-06-08', N'WareCell', N'立库仓位', 1, 4, 6, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2753, N'AC-06-09', N'WareCell', N'立库仓位', 1, 3, 6, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2754, N'AD-06-09', N'WareCell', N'立库仓位', 1, 4, 6, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2755, N'AC-06-10', N'WareCell', N'立库仓位', 1, 3, 6, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2756, N'AD-06-10', N'WareCell', N'立库仓位', 1, 4, 6, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2757, N'AC-07-01', N'WareCell', N'立库仓位', 1, 3, 7, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2758, N'AD-07-01', N'WareCell', N'立库仓位', 1, 4, 7, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2759, N'AC-07-02', N'WareCell', N'立库仓位', 1, 3, 7, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2760, N'AD-07-02', N'WareCell', N'立库仓位', 1, 4, 7, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2761, N'AC-07-03', N'WareCell', N'立库仓位', 1, 3, 7, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2762, N'AD-07-03', N'WareCell', N'立库仓位', 1, 4, 7, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2763, N'AC-07-04', N'WareCell', N'立库仓位', 1, 3, 7, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2764, N'AD-07-04', N'WareCell', N'立库仓位', 1, 4, 7, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2765, N'AC-07-05', N'WareCell', N'立库仓位', 1, 3, 7, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2766, N'AD-07-05', N'WareCell', N'立库仓位', 1, 4, 7, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2767, N'AC-07-06', N'WareCell', N'立库仓位', 1, 3, 7, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2768, N'AD-07-06', N'WareCell', N'立库仓位', 1, 4, 7, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2769, N'AC-07-07', N'WareCell', N'立库仓位', 1, 3, 7, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2770, N'AD-07-07', N'WareCell', N'立库仓位', 1, 4, 7, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2771, N'AC-07-08', N'WareCell', N'立库仓位', 1, 3, 7, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2772, N'AD-07-08', N'WareCell', N'立库仓位', 1, 4, 7, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2773, N'AC-07-09', N'WareCell', N'立库仓位', 1, 3, 7, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2774, N'AD-07-09', N'WareCell', N'立库仓位', 1, 4, 7, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2775, N'AC-07-10', N'WareCell', N'立库仓位', 1, 3, 7, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2776, N'AD-07-10', N'WareCell', N'立库仓位', 1, 4, 7, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2777, N'AC-08-01', N'WareCell', N'立库仓位', 1, 3, 8, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2778, N'AD-08-01', N'WareCell', N'立库仓位', 1, 4, 8, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2779, N'AC-08-02', N'WareCell', N'立库仓位', 1, 3, 8, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2780, N'AD-08-02', N'WareCell', N'立库仓位', 1, 4, 8, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2781, N'AC-08-03', N'WareCell', N'立库仓位', 1, 3, 8, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2782, N'AD-08-03', N'WareCell', N'立库仓位', 1, 4, 8, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2783, N'AC-08-04', N'WareCell', N'立库仓位', 1, 3, 8, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2784, N'AD-08-04', N'WareCell', N'立库仓位', 1, 4, 8, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2785, N'AC-08-05', N'WareCell', N'立库仓位', 1, 3, 8, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2786, N'AD-08-05', N'WareCell', N'立库仓位', 1, 4, 8, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2787, N'AC-08-06', N'WareCell', N'立库仓位', 1, 3, 8, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2788, N'AD-08-06', N'WareCell', N'立库仓位', 1, 4, 8, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2789, N'AC-08-07', N'WareCell', N'立库仓位', 1, 3, 8, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2790, N'AD-08-07', N'WareCell', N'立库仓位', 1, 4, 8, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2791, N'AC-08-08', N'WareCell', N'立库仓位', 1, 3, 8, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2792, N'AD-08-08', N'WareCell', N'立库仓位', 1, 4, 8, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2793, N'AC-08-09', N'WareCell', N'立库仓位', 1, 3, 8, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2794, N'AD-08-09', N'WareCell', N'立库仓位', 1, 4, 8, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2795, N'AC-08-10', N'WareCell', N'立库仓位', 1, 3, 8, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2796, N'AD-08-10', N'WareCell', N'立库仓位', 1, 4, 8, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2797, N'AC-09-01', N'WareCell', N'立库仓位', 1, 3, 9, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2798, N'AD-09-01', N'WareCell', N'立库仓位', 1, 4, 9, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2799, N'AC-09-02', N'WareCell', N'立库仓位', 1, 3, 9, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2800, N'AD-09-02', N'WareCell', N'立库仓位', 1, 4, 9, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2801, N'AC-09-03', N'WareCell', N'立库仓位', 1, 3, 9, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2802, N'AD-09-03', N'WareCell', N'立库仓位', 1, 4, 9, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2803, N'AC-09-04', N'WareCell', N'立库仓位', 1, 3, 9, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2804, N'AD-09-04', N'WareCell', N'立库仓位', 1, 4, 9, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2805, N'AC-09-05', N'WareCell', N'立库仓位', 1, 3, 9, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2806, N'AD-09-05', N'WareCell', N'立库仓位', 1, 4, 9, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2807, N'AC-09-06', N'WareCell', N'立库仓位', 1, 3, 9, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2808, N'AD-09-06', N'WareCell', N'立库仓位', 1, 4, 9, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2809, N'AC-09-07', N'WareCell', N'立库仓位', 1, 3, 9, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2810, N'AD-09-07', N'WareCell', N'立库仓位', 1, 4, 9, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2811, N'AC-09-08', N'WareCell', N'立库仓位', 1, 3, 9, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2812, N'AD-09-08', N'WareCell', N'立库仓位', 1, 4, 9, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2813, N'AC-09-09', N'WareCell', N'立库仓位', 1, 3, 9, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2814, N'AD-09-09', N'WareCell', N'立库仓位', 1, 4, 9, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2815, N'AC-09-10', N'WareCell', N'立库仓位', 1, 3, 9, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2816, N'AD-09-10', N'WareCell', N'立库仓位', 1, 4, 9, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2817, N'AC-10-01', N'WareCell', N'立库仓位', 1, 3, 10, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2818, N'AD-10-01', N'WareCell', N'立库仓位', 1, 4, 10, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2819, N'AC-10-02', N'WareCell', N'立库仓位', 1, 3, 10, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2820, N'AD-10-02', N'WareCell', N'立库仓位', 1, 4, 10, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2821, N'AC-10-03', N'WareCell', N'立库仓位', 1, 3, 10, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2822, N'AD-10-03', N'WareCell', N'立库仓位', 1, 4, 10, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2823, N'AC-10-04', N'WareCell', N'立库仓位', 1, 3, 10, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2824, N'AD-10-04', N'WareCell', N'立库仓位', 1, 4, 10, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2825, N'AC-10-05', N'WareCell', N'立库仓位', 1, 3, 10, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2826, N'AD-10-05', N'WareCell', N'立库仓位', 1, 4, 10, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2827, N'AC-10-06', N'WareCell', N'立库仓位', 1, 3, 10, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2828, N'AD-10-06', N'WareCell', N'立库仓位', 1, 4, 10, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2829, N'AC-10-07', N'WareCell', N'立库仓位', 1, 3, 10, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2830, N'AD-10-07', N'WareCell', N'立库仓位', 1, 4, 10, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2831, N'AC-10-08', N'WareCell', N'立库仓位', 1, 3, 10, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2832, N'AD-10-08', N'WareCell', N'立库仓位', 1, 4, 10, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2833, N'AC-10-09', N'WareCell', N'立库仓位', 1, 3, 10, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2834, N'AD-10-09', N'WareCell', N'立库仓位', 1, 4, 10, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2835, N'AC-10-10', N'WareCell', N'立库仓位', 1, 3, 10, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2836, N'AD-10-10', N'WareCell', N'立库仓位', 1, 4, 10, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2837, N'AC-11-01', N'WareCell', N'立库仓位', 1, 3, 11, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2838, N'AD-11-01', N'WareCell', N'立库仓位', 1, 4, 11, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2839, N'AC-11-02', N'WareCell', N'立库仓位', 1, 3, 11, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2840, N'AD-11-02', N'WareCell', N'立库仓位', 1, 4, 11, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2841, N'AC-11-03', N'WareCell', N'立库仓位', 1, 3, 11, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2842, N'AD-11-03', N'WareCell', N'立库仓位', 1, 4, 11, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2843, N'AC-11-04', N'WareCell', N'立库仓位', 1, 3, 11, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2844, N'AD-11-04', N'WareCell', N'立库仓位', 1, 4, 11, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2845, N'AC-11-05', N'WareCell', N'立库仓位', 1, 3, 11, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2846, N'AD-11-05', N'WareCell', N'立库仓位', 1, 4, 11, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2847, N'AC-11-06', N'WareCell', N'立库仓位', 1, 3, 11, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2848, N'AD-11-06', N'WareCell', N'立库仓位', 1, 4, 11, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2849, N'AC-11-07', N'WareCell', N'立库仓位', 1, 3, 11, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2850, N'AD-11-07', N'WareCell', N'立库仓位', 1, 4, 11, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2851, N'AC-11-08', N'WareCell', N'立库仓位', 1, 3, 11, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2852, N'AD-11-08', N'WareCell', N'立库仓位', 1, 4, 11, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2853, N'AC-11-09', N'WareCell', N'立库仓位', 1, 3, 11, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2854, N'AD-11-09', N'WareCell', N'立库仓位', 1, 4, 11, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2855, N'AC-11-10', N'WareCell', N'立库仓位', 1, 3, 11, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2856, N'AD-11-10', N'WareCell', N'立库仓位', 1, 4, 11, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2857, N'AC-12-01', N'WareCell', N'立库仓位', 1, 3, 12, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2858, N'AD-12-01', N'WareCell', N'立库仓位', 1, 4, 12, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2859, N'AC-12-02', N'WareCell', N'立库仓位', 1, 3, 12, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2860, N'AD-12-02', N'WareCell', N'立库仓位', 1, 4, 12, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2861, N'AC-12-03', N'WareCell', N'立库仓位', 1, 3, 12, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2862, N'AD-12-03', N'WareCell', N'立库仓位', 1, 4, 12, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2863, N'AC-12-04', N'WareCell', N'立库仓位', 1, 3, 12, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2864, N'AD-12-04', N'WareCell', N'立库仓位', 1, 4, 12, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2865, N'AC-12-05', N'WareCell', N'立库仓位', 1, 3, 12, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2866, N'AD-12-05', N'WareCell', N'立库仓位', 1, 4, 12, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2867, N'AC-12-06', N'WareCell', N'立库仓位', 1, 3, 12, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2868, N'AD-12-06', N'WareCell', N'立库仓位', 1, 4, 12, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2869, N'AC-12-07', N'WareCell', N'立库仓位', 1, 3, 12, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2870, N'AD-12-07', N'WareCell', N'立库仓位', 1, 4, 12, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2871, N'AC-12-08', N'WareCell', N'立库仓位', 1, 3, 12, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2872, N'AD-12-08', N'WareCell', N'立库仓位', 1, 4, 12, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2873, N'AC-12-09', N'WareCell', N'立库仓位', 1, 3, 12, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2874, N'AD-12-09', N'WareCell', N'立库仓位', 1, 4, 12, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2875, N'AC-12-10', N'WareCell', N'立库仓位', 1, 3, 12, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2876, N'AD-12-10', N'WareCell', N'立库仓位', 1, 4, 12, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2877, N'AC-13-01', N'WareCell', N'立库仓位', 1, 3, 13, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2878, N'AD-13-01', N'WareCell', N'立库仓位', 1, 4, 13, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2879, N'AC-13-02', N'WareCell', N'立库仓位', 1, 3, 13, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2880, N'AD-13-02', N'WareCell', N'立库仓位', 1, 4, 13, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2881, N'AC-13-03', N'WareCell', N'立库仓位', 1, 3, 13, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2882, N'AD-13-03', N'WareCell', N'立库仓位', 1, 4, 13, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2883, N'AC-13-04', N'WareCell', N'立库仓位', 1, 3, 13, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2884, N'AD-13-04', N'WareCell', N'立库仓位', 1, 4, 13, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2885, N'AC-13-05', N'WareCell', N'立库仓位', 1, 3, 13, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2886, N'AD-13-05', N'WareCell', N'立库仓位', 1, 4, 13, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2887, N'AC-13-06', N'WareCell', N'立库仓位', 1, 3, 13, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2888, N'AD-13-06', N'WareCell', N'立库仓位', 1, 4, 13, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2889, N'AC-13-07', N'WareCell', N'立库仓位', 1, 3, 13, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2890, N'AD-13-07', N'WareCell', N'立库仓位', 1, 4, 13, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2891, N'AC-13-08', N'WareCell', N'立库仓位', 1, 3, 13, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2892, N'AD-13-08', N'WareCell', N'立库仓位', 1, 4, 13, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2893, N'AC-13-09', N'WareCell', N'立库仓位', 1, 3, 13, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2894, N'AD-13-09', N'WareCell', N'立库仓位', 1, 4, 13, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2895, N'AC-13-10', N'WareCell', N'立库仓位', 1, 3, 13, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2896, N'AD-13-10', N'WareCell', N'立库仓位', 1, 4, 13, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2897, N'AC-14-01', N'WareCell', N'立库仓位', 1, 3, 14, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2898, N'AD-14-01', N'WareCell', N'立库仓位', 1, 4, 14, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2899, N'AC-14-02', N'WareCell', N'立库仓位', 1, 3, 14, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2900, N'AD-14-02', N'WareCell', N'立库仓位', 1, 4, 14, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2901, N'AC-14-03', N'WareCell', N'立库仓位', 1, 3, 14, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2902, N'AD-14-03', N'WareCell', N'立库仓位', 1, 4, 14, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2903, N'AC-14-04', N'WareCell', N'立库仓位', 1, 3, 14, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2904, N'AD-14-04', N'WareCell', N'立库仓位', 1, 4, 14, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2905, N'AC-14-05', N'WareCell', N'立库仓位', 1, 3, 14, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2906, N'AD-14-05', N'WareCell', N'立库仓位', 1, 4, 14, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2907, N'AC-14-06', N'WareCell', N'立库仓位', 1, 3, 14, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2908, N'AD-14-06', N'WareCell', N'立库仓位', 1, 4, 14, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2909, N'AC-14-07', N'WareCell', N'立库仓位', 1, 3, 14, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2910, N'AD-14-07', N'WareCell', N'立库仓位', 1, 4, 14, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2911, N'AC-14-08', N'WareCell', N'立库仓位', 1, 3, 14, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2912, N'AD-14-08', N'WareCell', N'立库仓位', 1, 4, 14, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2913, N'AC-14-09', N'WareCell', N'立库仓位', 1, 3, 14, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2914, N'AD-14-09', N'WareCell', N'立库仓位', 1, 4, 14, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2915, N'AC-14-10', N'WareCell', N'立库仓位', 1, 3, 14, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2916, N'AD-14-10', N'WareCell', N'立库仓位', 1, 4, 14, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2917, N'AC-15-01', N'WareCell', N'立库仓位', 1, 3, 15, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2918, N'AD-15-01', N'WareCell', N'立库仓位', 1, 4, 15, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2919, N'AC-15-02', N'WareCell', N'立库仓位', 1, 3, 15, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2920, N'AD-15-02', N'WareCell', N'立库仓位', 1, 4, 15, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2921, N'AC-15-03', N'WareCell', N'立库仓位', 1, 3, 15, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2922, N'AD-15-03', N'WareCell', N'立库仓位', 1, 4, 15, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2923, N'AC-15-04', N'WareCell', N'立库仓位', 1, 3, 15, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2924, N'AD-15-04', N'WareCell', N'立库仓位', 1, 4, 15, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2925, N'AC-15-05', N'WareCell', N'立库仓位', 1, 3, 15, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2926, N'AD-15-05', N'WareCell', N'立库仓位', 1, 4, 15, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2927, N'AC-15-06', N'WareCell', N'立库仓位', 1, 3, 15, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2928, N'AD-15-06', N'WareCell', N'立库仓位', 1, 4, 15, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2929, N'AC-15-07', N'WareCell', N'立库仓位', 1, 3, 15, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2930, N'AD-15-07', N'WareCell', N'立库仓位', 1, 4, 15, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2931, N'AC-15-08', N'WareCell', N'立库仓位', 1, 3, 15, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2932, N'AD-15-08', N'WareCell', N'立库仓位', 1, 4, 15, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2933, N'AC-15-09', N'WareCell', N'立库仓位', 1, 3, 15, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2934, N'AD-15-09', N'WareCell', N'立库仓位', 1, 4, 15, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2935, N'AC-15-10', N'WareCell', N'立库仓位', 1, 3, 15, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2936, N'AD-15-10', N'WareCell', N'立库仓位', 1, 4, 15, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2937, N'AC-16-01', N'WareCell', N'立库仓位', 1, 3, 16, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2938, N'AD-16-01', N'WareCell', N'立库仓位', 1, 4, 16, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2939, N'AC-16-02', N'WareCell', N'立库仓位', 1, 3, 16, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2940, N'AD-16-02', N'WareCell', N'立库仓位', 1, 4, 16, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2941, N'AC-16-03', N'WareCell', N'立库仓位', 1, 3, 16, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2942, N'AD-16-03', N'WareCell', N'立库仓位', 1, 4, 16, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2943, N'AC-16-04', N'WareCell', N'立库仓位', 1, 3, 16, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2944, N'AD-16-04', N'WareCell', N'立库仓位', 1, 4, 16, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2945, N'AC-16-05', N'WareCell', N'立库仓位', 1, 3, 16, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2946, N'AD-16-05', N'WareCell', N'立库仓位', 1, 4, 16, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2947, N'AC-16-06', N'WareCell', N'立库仓位', 1, 3, 16, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2948, N'AD-16-06', N'WareCell', N'立库仓位', 1, 4, 16, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2949, N'AC-16-07', N'WareCell', N'立库仓位', 1, 3, 16, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2950, N'AD-16-07', N'WareCell', N'立库仓位', 1, 4, 16, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2951, N'AC-16-08', N'WareCell', N'立库仓位', 1, 3, 16, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2952, N'AD-16-08', N'WareCell', N'立库仓位', 1, 4, 16, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2953, N'AC-16-09', N'WareCell', N'立库仓位', 1, 3, 16, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2954, N'AD-16-09', N'WareCell', N'立库仓位', 1, 4, 16, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2955, N'AC-16-10', N'WareCell', N'立库仓位', 1, 3, 16, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2956, N'AD-16-10', N'WareCell', N'立库仓位', 1, 4, 16, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2957, N'AC-17-01', N'WareCell', N'立库仓位', 1, 3, 17, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2958, N'AD-17-01', N'WareCell', N'立库仓位', 1, 4, 17, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2959, N'AC-17-02', N'WareCell', N'立库仓位', 1, 3, 17, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2960, N'AD-17-02', N'WareCell', N'立库仓位', 1, 4, 17, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2961, N'AC-17-03', N'WareCell', N'立库仓位', 1, 3, 17, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2962, N'AD-17-03', N'WareCell', N'立库仓位', 1, 4, 17, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2963, N'AC-17-04', N'WareCell', N'立库仓位', 1, 3, 17, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2964, N'AD-17-04', N'WareCell', N'立库仓位', 1, 4, 17, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2965, N'AC-17-05', N'WareCell', N'立库仓位', 1, 3, 17, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2966, N'AD-17-05', N'WareCell', N'立库仓位', 1, 4, 17, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2967, N'AC-17-06', N'WareCell', N'立库仓位', 1, 3, 17, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2968, N'AD-17-06', N'WareCell', N'立库仓位', 1, 4, 17, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2969, N'AC-17-07', N'WareCell', N'立库仓位', 1, 3, 17, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2970, N'AD-17-07', N'WareCell', N'立库仓位', 1, 4, 17, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2971, N'AC-17-08', N'WareCell', N'立库仓位', 1, 3, 17, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2972, N'AD-17-08', N'WareCell', N'立库仓位', 1, 4, 17, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2973, N'AC-17-09', N'WareCell', N'立库仓位', 1, 3, 17, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2974, N'AD-17-09', N'WareCell', N'立库仓位', 1, 4, 17, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2975, N'AC-17-10', N'WareCell', N'立库仓位', 1, 3, 17, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2976, N'AD-17-10', N'WareCell', N'立库仓位', 1, 4, 17, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2977, N'AC-18-01', N'WareCell', N'立库仓位', 1, 3, 18, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2978, N'AD-18-01', N'WareCell', N'立库仓位', 1, 4, 18, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2979, N'AC-18-02', N'WareCell', N'立库仓位', 1, 3, 18, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2980, N'AD-18-02', N'WareCell', N'立库仓位', 1, 4, 18, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2981, N'AC-18-03', N'WareCell', N'立库仓位', 1, 3, 18, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2982, N'AD-18-03', N'WareCell', N'立库仓位', 1, 4, 18, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2983, N'AC-18-04', N'WareCell', N'立库仓位', 1, 3, 18, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2984, N'AD-18-04', N'WareCell', N'立库仓位', 1, 4, 18, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2985, N'AC-18-05', N'WareCell', N'立库仓位', 1, 3, 18, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2986, N'AD-18-05', N'WareCell', N'立库仓位', 1, 4, 18, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2987, N'AC-18-06', N'WareCell', N'立库仓位', 1, 3, 18, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2988, N'AD-18-06', N'WareCell', N'立库仓位', 1, 4, 18, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2989, N'AC-18-07', N'WareCell', N'立库仓位', 1, 3, 18, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2990, N'AD-18-07', N'WareCell', N'立库仓位', 1, 4, 18, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2991, N'AC-18-08', N'WareCell', N'立库仓位', 1, 3, 18, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2992, N'AD-18-08', N'WareCell', N'立库仓位', 1, 4, 18, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2993, N'AC-18-09', N'WareCell', N'立库仓位', 1, 3, 18, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2994, N'AD-18-09', N'WareCell', N'立库仓位', 1, 4, 18, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2995, N'AC-18-10', N'WareCell', N'立库仓位', 1, 3, 18, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2996, N'AD-18-10', N'WareCell', N'立库仓位', 1, 4, 18, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2997, N'AC-19-01', N'WareCell', N'立库仓位', 1, 3, 19, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2998, N'AD-19-01', N'WareCell', N'立库仓位', 1, 4, 19, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (2999, N'AC-19-02', N'WareCell', N'立库仓位', 1, 3, 19, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3000, N'AD-19-02', N'WareCell', N'立库仓位', 1, 4, 19, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3001, N'AC-19-03', N'WareCell', N'立库仓位', 1, 3, 19, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3002, N'AD-19-03', N'WareCell', N'立库仓位', 1, 4, 19, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3003, N'AC-19-04', N'WareCell', N'立库仓位', 1, 3, 19, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3004, N'AD-19-04', N'WareCell', N'立库仓位', 1, 4, 19, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3005, N'AC-19-05', N'WareCell', N'立库仓位', 1, 3, 19, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3006, N'AD-19-05', N'WareCell', N'立库仓位', 1, 4, 19, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3007, N'AC-19-06', N'WareCell', N'立库仓位', 1, 3, 19, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3008, N'AD-19-06', N'WareCell', N'立库仓位', 1, 4, 19, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3009, N'AC-19-07', N'WareCell', N'立库仓位', 1, 3, 19, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3010, N'AD-19-07', N'WareCell', N'立库仓位', 1, 4, 19, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3011, N'AC-19-08', N'WareCell', N'立库仓位', 1, 3, 19, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3012, N'AD-19-08', N'WareCell', N'立库仓位', 1, 4, 19, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3013, N'AC-19-09', N'WareCell', N'立库仓位', 1, 3, 19, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3014, N'AD-19-09', N'WareCell', N'立库仓位', 1, 4, 19, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3015, N'AC-19-10', N'WareCell', N'立库仓位', 1, 3, 19, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3016, N'AD-19-10', N'WareCell', N'立库仓位', 1, 4, 19, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3017, N'AC-20-01', N'WareCell', N'立库仓位', 1, 3, 20, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3018, N'AD-20-01', N'WareCell', N'立库仓位', 1, 4, 20, 1, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3019, N'AC-20-02', N'WareCell', N'立库仓位', 1, 3, 20, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3020, N'AD-20-02', N'WareCell', N'立库仓位', 1, 4, 20, 2, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3021, N'AC-20-03', N'WareCell', N'立库仓位', 1, 3, 20, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3022, N'AD-20-03', N'WareCell', N'立库仓位', 1, 4, 20, 3, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3023, N'AC-20-04', N'WareCell', N'立库仓位', 1, 3, 20, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3024, N'AD-20-04', N'WareCell', N'立库仓位', 1, 4, 20, 4, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3025, N'AC-20-05', N'WareCell', N'立库仓位', 1, 3, 20, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3026, N'AD-20-05', N'WareCell', N'立库仓位', 1, 4, 20, 5, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3027, N'AC-20-06', N'WareCell', N'立库仓位', 1, 3, 20, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3028, N'AD-20-06', N'WareCell', N'立库仓位', 1, 4, 20, 6, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3029, N'AC-20-07', N'WareCell', N'立库仓位', 1, 3, 20, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3030, N'AD-20-07', N'WareCell', N'立库仓位', 1, 4, 20, 7, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3031, N'AC-20-08', N'WareCell', N'立库仓位', 1, 3, 20, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3032, N'AD-20-08', N'WareCell', N'立库仓位', 1, 4, 20, 8, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3033, N'AC-20-09', N'WareCell', N'立库仓位', 1, 3, 20, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3034, N'AD-20-09', N'WareCell', N'立库仓位', 1, 4, 20, 9, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3035, N'AC-20-10', N'WareCell', N'立库仓位', 1, 3, 20, 10, 0)
GO
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3036, N'AD-20-10', N'WareCell', N'立库仓位', 1, 4, 20, 10, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3037, N'InStationA01', N'InStation', N'堆垛机取货站台', 1, 202, 202, 202, 2)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3038, N'OutStationA01', N'OutStation', N'堆垛机放货站台', 1, 201, 201, 201, 1)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3039, N'EntranceStationA01', N'Entrance', N'入库口', 1, 0, 0, 0, 0)
INSERT [dbo].[I_Pose] ([Id], [wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES (3040, N'ExitStationA01', N'Exit', N'出库口', 1, 0, 0, 0, 0)
SET IDENTITY_INSERT [dbo].[I_Pose] OFF
INSERT [dbo].[I_Task] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000001', N'', N'100', 1, 1, 10, 40, N'P10001', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AA-02-01', NULL, N'WCS', CAST(N'2020-08-27 00:00:00.000' AS DateTime), NULL, CAST(N'2020-08-27 16:05:39.000' AS DateTime), 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000001', N'', N'100', 1, 1, 10, 40, N'P10001', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AA-02-01', NULL, N'WCS', CAST(N'2020-08-18 15:40:48.833' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000002', N'', N'100', 1, 7, 25, 100, N'P10002', 0, 0, 0, N'AA-03-01', N'AA-03-01', N'EntranceStationA01', N'AA-03-01', N'自动完成', N'WCS', CAST(N'2020-08-18 15:47:48.130' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000003', N'', N'100', 1, 7, 25, 100, N'P10003', 0, 0, 0, N'AA-04-01', N'AA-04-01', N'EntranceStationA01', N'AA-04-01', N'自动完成', N'WCS', CAST(N'2020-08-18 16:35:48.257' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000004', N'', N'300', 2, 7, 45, 100, N'P10003', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-04-01', N'ExitStationA01', N'自动完成', N'WCS', CAST(N'2020-08-18 16:38:09.760' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000005', N'', N'100', 1, 7, 25, 100, N'P10005', 0, 0, 0, N'AA-05-01', N'AA-05-01', N'EntranceStationA01', N'AA-05-01', N'自动完成', N'WCS', CAST(N'2020-08-18 17:09:44.493' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000006', N'', N'800', 6, 5, 25, 100, N'P10005', 0, 0, 0, N'AA-06-01', N'AA-06-01', N'AA-05-01', N'AA-06-01', N'自动完成', N'WCS', CAST(N'2020-08-18 17:11:36.323' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000007', N'', N'900', 5, 13, 25, 100, N'P10005', 0, 0, 0, N'AA-06-01', N'AA-06-01', N'AA-06-01', N'AA-06-01', N'自动完成', N'WCS', CAST(N'2020-08-18 17:13:04.683' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000008', N'', N'900', 5, 13, 25, 100, N'P10006', 0, 0, 0, N'AA-07-01', N'AA-07-01', N'AA-06-01', N'AA-07-01', N'自动完成', N'WCS', CAST(N'2020-08-18 18:11:16.547' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000009', N'', N'900', 5, 13, 25, 100, N'P10007', 0, 0, 0, N'AA-07-01', N'AA-07-01', N'AA-07-01', N'AA-07-01', N'自动完成', N'WCS', CAST(N'2020-08-18 18:20:15.017' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200818000010', N'', N'900', 5, 13, 25, 100, N'P10008', 0, 0, 0, N'AA-07-01', N'AA-07-01', N'AA-07-01', N'AA-07-01', N'自动完成', N'WCS', CAST(N'2020-08-18 18:37:39.133' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000001', N'', N'300', 2, 2, 20, 21, N'P10001', 0, 0, 0, N'AA-01-07', N'AA-01-07', N'AA-01-07', N'ExitStationA01', NULL, N'WCS', CAST(N'2020-08-20 09:29:57.603' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000002', N'', N'300', 2, 7, 45, 100, N'P10001', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-07-01', N'ExitStationA01', N'自动完成', N'WCS', CAST(N'2020-08-20 09:33:39.563' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000003', N'6120', N'100', 1, 1, 10, 40, N'XYC00790', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AC-01-01', NULL, N'WmsWebApi', CAST(N'2020-08-20 13:19:17.040' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000004', N'6123', N'100', 1, 1, 10, 40, N'XYC00789', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AC-01-03', NULL, N'WmsWebApi', CAST(N'2020-08-20 14:12:05.507' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000005', N'6123', N'100', 1, 7, 25, 100, N'XYC00789', 0, 0, 0, N'AC-01-03', N'AC-01-03', N'EntranceStationA01', N'AC-01-03', NULL, N'WmsWebApi', CAST(N'2020-08-20 14:14:13.253' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000006', N'6124', N'300', 2, 7, 45, 100, N'XYC00789', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-01-03', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-20 14:30:57.360' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000007', N'6126', N'100', 1, 7, 25, 100, N'XYC00788', 0, 0, 0, N'AC-01-03', N'AC-01-03', N'EntranceStationA01', N'AC-01-03', N'自动完成', N'WmsWebApi', CAST(N'2020-08-20 15:08:16.317' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000008', N'6127', N'900', 5, 13, 25, 100, N'XYC00788', 0, 0, 0, N'AC-01-03', N'AC-01-03', N'AC-01-03', N'AC-01-03', N'自动完成', N'WmsWebApi', CAST(N'2020-08-20 15:17:15.430' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000009', N'6128', N'300', 2, 7, 45, 100, N'XYC00788', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-01-03', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-20 15:29:02.987' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000010', N'6129', N'100', 1, 7, 25, 100, N'XYC00788', 0, 0, 0, N'AC-20-01', N'AC-20-01', N'EntranceStationA01', N'AC-20-01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-20 15:37:45.750' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000011', N'6130', N'300', 2, 3, 21, 22, N'XYC00790', 0, 0, 0, N'AC-01-01', N'OutStationA01', N'AC-01-01', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-20 16:08:18.853' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000012', N'6130', N'300', 2, 2, 20, 21, N'XYC00790', 0, 0, 0, N'AC-01-01', N'AC-01-01', N'AC-01-01', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-20 16:10:44.257' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000013', N'6130', N'300', 2, 2, 20, 21, N'XYC00790', 0, 0, 0, N'AC-01-01', N'AC-01-01', N'AC-01-01', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-20 16:29:08.993' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000014', N'6132', N'300', 2, 2, 20, 21, N'XYC00001', 0, 0, 0, N'AA-01-01', N'AA-01-01', N'AA-01-01', N'ExitStationA01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-20 17:40:14.313' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200820000015', N'6133', N'100', 1, 6, 22, 25, N'XYC00750', 0, 0, 0, N'AC-20-01', N'AC-20-01', N'EntranceStationA01', N'AC-20-01', NULL, N'WmsWebApi', CAST(N'2020-08-20 17:50:37.880' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000001', N'6134', N'100', 1, 7, 25, 100, N'XYC00744', 0, 0, 0, N'AC-20-03', N'AC-20-03', N'EntranceStationA01', N'AC-20-03', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 09:24:05.687' AS DateTime), NULL, NULL, 0, 0, 0, 1, N'AC-20-03', N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000002', N'In202008160001', N'100', 1, 1, 10, 40, N'PB0008', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AA-01-01', NULL, N'WmsWebApi', CAST(N'2020-08-21 11:04:12.400' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000003', N'In202008160001', N'100', 1, 1, 10, 40, N'PB0008', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AA-01-01', NULL, N'WmsWebApi', CAST(N'2020-08-21 11:06:44.397' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000004', N'6136', N'300', 2, 7, 45, 100, N'XYC00744', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-20-03', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 11:28:51.037' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000005', N'6137', N'100', 1, 7, 25, 100, N'XYC00787', 0, 0, 0, N'AC-20-05', N'AC-20-05', N'EntranceStationA01', N'AC-20-05', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 11:33:50.940' AS DateTime), NULL, NULL, 0, 0, 0, 1, N'AC-20-05', N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000006', N'6138', N'300', 2, 7, 45, 100, N'XYC00787', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-20-05', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 12:07:29.567' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000007', N'6139', N'100', 1, 7, 25, 100, N'XYC00786', 0, 0, 0, N'AC-20-05', N'AC-20-05', N'EntranceStationA01', N'AC-20-05', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 12:09:41.967' AS DateTime), NULL, NULL, 0, 0, 0, 1, N'AA-01-01', N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000008', N'6144', N'300', 2, 2, 20, 21, N'XYC00785', 0, 0, 0, N'AC-01-02', N'AC-01-02', N'AC-01-02', N'ExitStationA01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-21 12:54:20.163' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000009', N'6145', N'300', 2, 2, 20, 21, N'XYC00785', 0, 0, 0, N'AC-01-02', N'AC-01-02', N'AC-01-02', N'ExitStationA01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-21 13:12:50.653' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000010', N'6146', N'300', 2, 2, 20, 21, N'XYC00785', 0, 0, 0, N'AC-01-02', N'AC-01-02', N'AC-01-02', N'ExitStationA01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-21 13:27:12.897' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000011', N'6147', N'300', 2, 7, 45, 100, N'XYC00780', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-01-01', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 13:36:57.347' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000012', N'6148', N'100', 1, 7, 25, 100, N'XYC00700', 0, 0, 0, N'AA-01-01', N'AA-01-01', N'EntranceStationA01', N'AA-01-01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 13:53:24.107' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000013', N'6150', N'100', 1, 7, 25, 100, N'XYC00703', 0, 0, 0, N'AC-01-02', N'AC-01-02', N'EntranceStationA01', N'AC-01-02', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 13:53:26.127' AS DateTime), NULL, NULL, 0, 0, 0, 1, N'AC-01-01', N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000014', N'6151', N'800', 6, 5, 25, 100, N'XYC00786', 0, 0, 0, N'AA-01-02', N'AA-01-02', N'AC-20-05', N'AA-01-02', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 14:25:57.560' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000015', N'6152', N'300', 2, 2, 20, 21, N'XYC00005', 0, 0, 0, N'AC-01-02', N'AC-01-02', N'AC-01-02', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-21 14:28:28.773' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000016', N'6153', N'300', 2, 7, 45, 100, N'XYC00002', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AB-01-02', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 15:10:17.767' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000017', N'6154', N'100', 1, 7, 25, 100, N'XYC00751', 0, 0, 0, N'AA-01-03', N'AA-01-03', N'EntranceStationA01', N'AA-01-03', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 15:11:24.757' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000018', N'6156', N'900', 5, 13, 25, 100, N'XYC00788', 0, 0, 0, N'AA-01-01', N'AA-01-01', N'AA-01-01', N'AA-01-01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 15:42:38.930' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000019', N'6157', N'100', 1, 7, 25, 100, N'XYC00715', 0, 0, 0, N'AA-01-05', N'AA-01-05', N'EntranceStationA01', N'AA-01-05', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:19:15.970' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000020', N'6158', N'100', 1, 7, 25, 100, N'XYC00710', 0, 0, 0, N'AA-01-04', N'AA-01-04', N'EntranceStationA01', N'AA-01-04', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:19:27.810' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000021', N'6159', N'300', 2, 7, 45, 100, N'XYC00003', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AD-01-02', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:37:35.897' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000022', N'6161', N'300', 2, 7, 45, 100, N'XYC00700', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-01-01', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:41:12.503' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000023', N'6162', N'100', 1, 7, 25, 100, N'XYC00711', 0, 0, 0, N'AC-01-01', N'AC-01-01', N'EntranceStationA01', N'AC-01-01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:42:15.527' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000024', N'6163', N'300', 2, 2, 20, 21, N'XYC00700', 0, 0, 0, N'AA-01-01', N'AA-01-01', N'AA-01-01', N'ExitStationA01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-21 16:46:37.937' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000025', N'6164', N'300', 2, 7, 45, 100, N'XYC00711', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-01-01', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:49:40.020' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000026', N'6165', N'100', 1, 7, 25, 100, N'XYC00712', 0, 0, 0, N'AC-01-02', N'AC-01-02', N'EntranceStationA01', N'AC-01-02', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:50:25.770' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200821000027', N'6166', N'800', 6, 5, 25, 100, N'XYC00789', 0, 0, 0, N'AC-01-03', N'AC-01-03', N'AA-01-03', N'AC-01-03', N'自动完成', N'WmsWebApi', CAST(N'2020-08-21 16:58:55.330' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000001', N'6169', N'800', 6, 2, 20, 21, N'XYC00002', 0, 0, 0, N'AB-01-02', N'AB-01-02', N'AB-01-02', N'AA-01-01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-22 09:18:33.200' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000002', N'6168', N'300', 2, 7, 45, 100, N'XYC00004', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-01-02', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 09:21:43.930' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'6169')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000003', N'6170', N'300', 2, 2, 20, 21, N'XYC00005', 0, 0, 0, N'AC-01-03', N'AC-01-03', N'AC-01-03', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-22 10:56:30.817' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000004', N'6171', N'100', 1, 7, 25, 100, N'XYC00005', 0, 0, 0, N'AA-01-03', N'AA-01-03', N'EntranceStationA01', N'AA-01-03', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 10:59:21.777' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, N'0', N'60.6', N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000005', N'6172', N'300', 2, 2, 20, 21, N'XYC00005', 0, 0, 0, N'AC-01-03', N'AC-01-03', N'AC-01-03', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-22 11:04:34.833' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000006', N'6174', N'300', 2, 2, 20, 21, N'XYC00006', 0, 0, 0, N'AC-01-05', N'AC-01-05', N'AC-01-05', N'ExitStationA01', NULL, N'WmsWebApi', CAST(N'2020-08-22 13:17:31.857' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000007', N'6175', N'300', 2, 2, 20, 21, N'XYC00006', 0, 0, 0, N'AC-01-04', N'AC-01-04', N'AC-01-04', N'ExitStationA01', N'强制删除', N'WmsWebApi', CAST(N'2020-08-22 13:52:23.113' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'6167')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000008', N'6178', N'300', 2, 7, 45, 100, N'XYC00008', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AB-18-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:31:39.047' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000009', N'6179', N'300', 2, 7, 45, 100, N'XYC00009', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-18-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:33:22.940' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000010', N'6180', N'300', 2, 7, 45, 100, N'XYC00010', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-18-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:34:38.083' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'6179')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000011', N'6181', N'300', 2, 7, 45, 100, N'XYC00011', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-01-04', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:37:41.960' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000012', N'6182', N'300', 2, 7, 45, 100, N'XYC00012', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-08-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:38:43.547' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000013', N'6184', N'300', 2, 7, 45, 100, N'XYC00013', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AD-18-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:42:00.310' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000014', N'6185', N'300', 2, 7, 45, 100, N'XYC00014', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AD-16-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:43:08.410' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000015', N'6186', N'300', 2, 7, 45, 100, N'XYC00015', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AA-02-06', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:44:12.463' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000016', N'6175', N'300', 2, 7, 45, 100, N'XYC00006', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-01-04', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:46:00.743' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000017', N'6187', N'300', 2, 7, 45, 100, N'XYC00008', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AB-01-01', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:48:03.580' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000018', N'6188', N'300', 2, 7, 45, 100, N'XYC00008', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AC-20-01', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:52:09.000' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200822000019', N'6189', N'300', 2, 7, 45, 100, N'XYC00009', 0, 0, 0, N'ExitStationA01', N'ExitStationA01', N'AD-01-01', N'ExitStationA01', N'自动完成', N'WmsWebApi', CAST(N'2020-08-22 14:53:15.177' AS DateTime), NULL, NULL, 0, 0, 0, 0, NULL, NULL, NULL, N'0')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200826000001', N'', N'100', 1, 1, 10, 100, N'P10001', 0, 0, 0, N'EntranceStationA01', N'EntranceStationA01', N'EntranceStationA01', N'AA-02-01', N'自动完成', N'WCS', CAST(N'2020-08-18 15:40:48.833' AS DateTime), NULL, CAST(N'2020-08-26 09:35:34.033' AS DateTime), 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[I_Task_His] ([tNo], [tNo_WMS], [Type], [TaskFlow], [TaskSetp], [NowState], [NextState], [PalletOrBoxNo], [Priority], [RoadWay], [ForkNo], [FromPlace], [ToPlace], [EntrancePlace], [ExitPlace], [ErrorMsg], [Task_CreateWho], [Task_CreateTime], [Task_StartTime], [Task_FinishTime], [SendAgainFlag], [DeleteFlag], [EmptyOutFlag], [FullInFlag], [FullInPlace], [Height], [Weight], [preTaskNo]) VALUES (N'20200826000002', N'', N'100', 1, 7, 25, 100, N'P10001', 0, 0, 0, N'AA-02-01', N'AA-02-01', N'EntranceStationA01', N'AA-02-01', N'自动完成', N'WCS', CAST(N'2020-08-18 15:40:48.833' AS DateTime), NULL, CAST(N'2020-08-27 09:39:56.000' AS DateTime), 0, 0, 0, 0, NULL, NULL, NULL, N'')
INSERT [dbo].[T_BaseNumber] ([Value], [Vkey]) VALUES (N'InitWeight', N'150')
INSERT [dbo].[T_BaseNumber] ([Value], [Vkey]) VALUES (N'SetWeight', N'120')
INSERT [dbo].[T_BaseNumber] ([Value], [Vkey]) VALUES (N'TNo', N'20200822000019')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (1, 1, N'100', N'Entrance', N'WareCell', 1, 10, 40, N'Entrance', N'Entrance', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (2, 1, N'100', N'Entrance', N'WareCell', 2, 40, 55, N'Entrance', N'InStationA01', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (3, 1, N'100', N'Entrance', N'WareCell', 3, 55, 20, N'InStationA01', N'InStationA01', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (4, 1, N'100', N'Entrance', N'WareCell', 4, 20, 21, N'InStationA01', N'InStationA01', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (5, 1, N'100', N'Entrance', N'WareCell', 5, 21, 22, N'InStationA01', N'Exit', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (6, 1, N'100', N'Entrance', N'WareCell', 6, 22, 25, N'Exit', N'Exit', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (7, 1, N'100', N'Entrance', N'WareCell', 7, 25, 100, N'Exit', N'Exit', N'入库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (11, 2, N'300', N'WareCell', N'Exit', 1, 10, 20, N'Entrance', N'Entrance', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (12, 2, N'300', N'WareCell', N'Exit', 2, 20, 21, N'Entrance', N'Entrance', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (13, 2, N'300', N'WareCell', N'Exit', 3, 21, 22, N'Entrance', N'OutStationA01', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (14, 2, N'300', N'WareCell', N'Exit', 4, 22, 25, N'OutStationA01', N'OutStationA01', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (15, 2, N'300', N'WareCell', N'Exit', 5, 25, 50, N'OutStationA01', N'Exit', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (16, 2, N'300', N'WareCell', N'Exit', 6, 50, 45, N'Exit', N'Exit', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (17, 2, N'300', N'WareCell', N'Exit', 7, 45, 100, N'Exit', N'Exit', N'出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (21, 6, N'800', N'WareCell', N'WareCell', 1, 10, 20, N'Entrance', N'Entrance', N'库内移库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (22, 6, N'800', N'WareCell', N'WareCell', 2, 20, 21, N'Entrance', N'Entrance', N'库内移库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (23, 6, N'800', N'WareCell', N'WareCell', 3, 21, 22, N'Entrance', N'Exit', N'库内移库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (24, 6, N'800', N'WareCell', N'WareCell', 4, 22, 25, N'Exit', N'Exit', N'库内移库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (25, 6, N'800', N'WareCell', N'WareCell', 5, 25, 100, N'Exit', N'Exit', N'库内移库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (31, 5, N'900', N'WareCell', N'WareCell', 1, 10, 20, N'Entrance', N'Entrance', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (32, 5, N'900', N'WareCell', N'WareCell', 2, 20, 21, N'Entrance', N'OutStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (33, 5, N'900', N'WareCell', N'WareCell', 3, 21, 22, N'OutStationA01', N'OutStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (34, 5, N'900', N'WareCell', N'WareCell', 4, 22, 25, N'OutStationA01', N'OutStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (35, 5, N'900', N'WareCell', N'WareCell', 5, 25, 50, N'OutStationA01', N'ExitStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (36, 5, N'900', N'WareCell', N'WareCell', 6, 50, 45, N'OutStationA01', N'ExitStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (37, 5, N'900', N'WareCell', N'WareCell', 7, 45, 40, N'EntranceStationA01', N'EntranceStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (38, 5, N'900', N'WareCell', N'WareCell', 8, 40, 55, N'EntranceStationA01', N'InStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (39, 5, N'900', N'WareCell', N'WareCell', 9, 55, 20, N'InStationA01', N'InStationA01', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (40, 5, N'900', N'WareCell', N'WareCell', 10, 20, 21, N'InStationA01', N'Exit', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (41, 5, N'900', N'WareCell', N'WareCell', 11, 21, 22, N'Exit', N'Exit', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (42, 5, N'900', N'WareCell', N'WareCell', 12, 22, 25, N'Exit', N'Exit', N'分拣出库')
INSERT [dbo].[T_TaskFlow] ([Id], [Menu], [TaskType], [EntranceType], [ExitType], [Setp], [NowState], [NextState], [FromPlace], [ToPlace], [Remark]) VALUES (43, 5, N'900', N'WareCell', N'WareCell', 13, 25, 100, N'Exit', N'Exit', N'分拣出库')
/****** Object:  StoredProcedure [dbo].[P_Create_Device_Dr]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[P_Create_Device_Dr] 
AS
BEGIN
DECLARE @ExecText NVARCHAR(1000),@TmpDeviceCode NVARCHAR(50)
BEGIN TRAN
BEGIN TRY
	DECLARE Vend_Cursor_1 CURSOR  FOR SELECT Code FROM dbo.I_Device WHERE Type = 'Entrance' OR Type = 'OutStation'
	OPEN Vend_Cursor_1  
	FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode
	WHILE @@FETCH_STATUS = 0
	BEGIN
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'MessageID', N'Read', N'DB3000', 0, 0, N'INT', N'报文名称', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'LoadingStatus', N'Read', N'DB3000', 2, 0, N'INT', N'装载状态', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'ScannerNr', N'Read', N'DB3000', 4, 0, N'INT', N'读码器编号', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'PalletID', N'Read', N'DB3000', 6, 0, N'STRING', N'托盘号', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Weight', N'Read', N'DB3000', 26, 0, N'INT', N'重量', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Length', N'Read', N'DB3000', 28, 0, N'INT', N'长度', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Width', N'Read', N'DB3000', 30, 0, N'INT', N'宽度', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Height', N'Read', N'DB3000', 32, 0, N'INT', N'高度', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Retcode', N'Read', N'DB3000', 34, 0, N'INT', N'Retcode', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Spare', N'Read', N'DB3000', 36, 0, N'INT', N'备用', N'', N'1');

		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'MessageID', N'Write', N'DB4000', 0, 0, N'INT', N'报文名称', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'LoadingStatus', N'Write', N'DB4000', 2, 0, N'INT', N'装载状态', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'ScannerNr', N'Write', N'DB4000', 4, 0, N'INT', N'读码器编号', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'PalletID', N'Write', N'DB4000', 6, 0, N'STRING', N'托盘号', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Weight', N'Write', N'DB4000', 26, 0, N'INT', N'重量', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Length', N'Write', N'DB4000', 28, 0, N'INT', N'长度', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Width', N'Write', N'DB4000', 30, 0, N'INT', N'宽度', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Height', N'Write', N'DB4000', 32, 0, N'INT', N'高度', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'DeStation', N'Write', N'DB4000', 34, 0, N'INT', N'目的地', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [Value]) VALUES (@TmpDeviceCode, N'Spare', N'Write', N'DB4000', 36, 0, N'INT', N'备用', N'', N'1');
		
		FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode;
	END

	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  



	COMMIT TRAN;
END TRY 
BEGIN CATCH
	ROLLBACK TRAN;
	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  
	SET @ExecText=ERROR_MESSAGE(); RAISERROR(@ExecText,16,1);
END CATCH
END
GO
/****** Object:  StoredProcedure [dbo].[P_create_device_pointstate]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[P_create_device_pointstate]
as 
begin 
DECLARE @ExecText NVARCHAR(1000),@TmpDeviceCode NVARCHAR(50)
BEGIN TRAN
BEGIN TRY
	DECLARE Vend_Cursor_1 CURSOR  FOR SELECT Code FROM dbo.I_Device WHERE Type = 'PointState' 
	OPEN Vend_Cursor_1  
	FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode
	WHILE @@FETCH_STATUS = 0
	BEGIN

		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'AutoModeEnabled', N'Read', N'DB3002', 0, 0, N'BOOL', N'输送线状态', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Occupied', N'Read', N'DB3002', 0, 1, N'BOOL', N'是否有货', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Destination', N'Read', N'DB3002', 2, 0, N'INT', N'输送线目的地', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'CurrentLocation', N'Read', N'DB3002', 4, 0, N'INT', N'输送线当前编号', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'PalletID', N'Read', N'DB3002', 6, 0, N'CHAR', N'输送线条码', N'', N'1');
		
		FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode;
	end

	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  
	commit tran;
end try

BEGIN CATCH
	ROLLBACK TRAN;
	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  
	SET @ExecText=ERROR_MESSAGE(); RAISERROR(@ExecText,16,1);
END CATCH

end
GO
/****** Object:  StoredProcedure [dbo].[P_Create_Device_Pr]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[P_Create_Device_Pr] 
AS
BEGIN
DECLARE @ExecText NVARCHAR(1000),@TmpDeviceCode NVARCHAR(50)
BEGIN TRAN
BEGIN TRY
	DECLARE Vend_Cursor_1 CURSOR  FOR SELECT Code FROM dbo.I_Device WHERE Type = 'Exit' OR Type = 'InStation'
	OPEN Vend_Cursor_1  
	FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode
	WHILE @@FETCH_STATUS = 0
	BEGIN
				INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'MessageID', N'Read', N'DB3002', 40, 0, N'INT', N'报文名称', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'SortResualt', N'Read', N'DB3002', 42, 0, N'INT', N'分拣结果', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'AssignDestination', N'Read', N'DB3002', 44, 0, N'INT', N'读码器编号', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'ActualDestination', N'Read', N'DB3002', 46, 0, N'STRING', N'实际地址', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'PalletID', N'Read', N'DB3002', 48, 0, N'INT', N'条码', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'Spare', N'Read', N'DB3002', 68, 0, N'INT', N'备用', N'', N'1');
																																						   
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'MessageID', N'Write', N'DB3102', 40, 0, N'INT', N'报文名称', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'LoadingStatus', N'Write', N'DB3102', 42, 0, N'INT', N'装载状态', N'', N'1');
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'ScannerNr', N'Write', N'DB3102', 44, 0, N'INT', N'读码器编号', N'', N'1')
		INSERT INTO [dbo].[I_Device_Address]([Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES (@TmpDeviceCode, N'Spare', N'Write', N'DB3102', 46, 0, N'INT', N'备用', N'', N'1');

		FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode;
	END

	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  



	COMMIT TRAN;
END TRY 
BEGIN CATCH
	ROLLBACK TRAN;
	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  
	SET @ExecText=ERROR_MESSAGE(); RAISERROR(@ExecText,16,1);
END CATCH
END
GO
/****** Object:  StoredProcedure [dbo].[P_Create_SRM_DeviceAddress]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[P_Create_SRM_DeviceAddress]
as
BEGIN 
DECLARE @ExecText NVARCHAR(1000),@TmpDeviceCode NVARCHAR(50)
BEGIN TRAN
BEGIN TRY
	DECLARE Vend_Cursor_1 CURSOR  FOR select Code from I_Device WHERE TYPE='Srm'
	OPEN Vend_Cursor_1  
	FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode
	WHILE @@FETCH_STATUS = 0
	BEGIN 
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmNo', N'Read', N'DB101', 0, 0, N'INT', N'堆垛机PLC编号', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmState', N'Read', N'DB101', 2, 0, N'INT', N'操作模式:1-维修;2-手动;3-机载操作;4-单机自动;5-联机', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmHeart', N'Read', N'DB101', 4, 0, N'INT', N'心跳累加1-32767', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'sSize', N'Read', N'DB101', 6, 0, N'DINT', N'水平测距数据单位1mm', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'qSize', N'Read', N'DB101', 10, 0, N'DINT', N'起升测距数据单位1mm', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1cSize', N'Read', N'DB101', 14, 0, N'DINT', N'货叉1伸叉测距数据单位1mm', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Lie', N'Read', N'DB101', 22, 0, N'INT', N'当前列', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Ceng', N'Read', N'DB101', 24, 0, N'INT', N'当前层', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Exit', N'Read', N'DB101', 26, 0, N'INT', N'当前出/入口', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError', N'Read', N'DB101', 28, 0, N'BOOL', N'堆垛机总故障', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1State', N'Read', N'DB101', 32, 0, N'INT', N'货叉任务状态:1-待机;2-任务执行中;3-任务完成;4-任务中断(出错,空出,满入);5-下发任务错误', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1TaskType', N'Read', N'DB101', 34, 0, N'INT', N'货叉任务类型:0-无任务,1-库内取货,2-库内放货,3-库外入库,4库外出库', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error', N'Read', N'DB101', 36, 0, N'BOOL', N'货叉总故障', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1TaskError', N'Read', N'DB101', 36, 1, N'BOOL', N'货叉任务错误', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Load', N'Read', N'DB101', 36, 2, N'BOOL', N'货叉有货', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'ForkCenter', N'Read', N'DB101', 36, 3, N'BOOL', N'货叉在中心', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1FullIn', N'Read', N'DB101', 36, 4, N'BOOL', N'货叉满入', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1EmptyOut', N'Read', N'DB101', 36, 5, N'BOOL', N'货叉空出', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1TakeTaskError', N'Read', N'DB101', 36, 6, N'BOOL', N'取货任务错误(双伸位)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_01', N'Read', N'DB102', 0, 0, N'BOOL', N'行走变频器通讯故障', N'行走变频器通讯故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_02', N'Read', N'DB102', 0, 1, N'BOOL', N'行走变频器报警', N'行走变频器报警', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_03', N'Read', N'DB102', 0, 2, N'BOOL', N'行走轴运行超时', N'行走轴运行超时', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_04', N'Read', N'DB102', 0, 3, N'BOOL', N'行走轴测距设备故障', N'行走轴测距设备故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_05', N'Read', N'DB102', 0, 4, N'BOOL', N'行走轴断路器故障', N'行走轴断路器故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_06', N'Read', N'DB102', 0, 5, N'BOOL', N'行走轴超出前限位', N'行走轴超出前限位', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_07', N'Read', N'DB102', 0, 6, N'BOOL', N'行走轴超出后限位', N'行走轴超出后限位', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_08', N'Read', N'DB102', 0, 7, N'BOOL', N'行走轴未准备就绪', N'行走轴未准备就绪', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_09', N'Read', N'DB102', 1, 0, N'BOOL', N'外部故障', N'外部故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_10', N'Read', N'DB102', 1, 1, N'BOOL', N'行走从轴变频器通讯故障', N'行走从轴变频器通讯故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_11', N'Read', N'DB102', 1, 2, N'BOOL', N'行走从轴变频器报警', N'行走从轴变频器报警', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_12', N'Read', N'DB102', 1, 3, N'BOOL', N'行走从轴变频器未准备就绪', N'行走从轴变频器未准备就绪', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_13', N'Read', N'DB102', 1, 4, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_14', N'Read', N'DB102', 1, 5, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_15', N'Read', N'DB102', 1, 6, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_16', N'Read', N'DB102', 1, 7, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_17', N'Read', N'DB102', 8, 0, N'BOOL', N'升降变频器通讯故障', N'升降变频器通讯故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_18', N'Read', N'DB102', 8, 1, N'BOOL', N'升降变频器报警', N'升降变频器报警', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_19', N'Read', N'DB102', 8, 2, N'BOOL', N'升降轴运行超时', N'升降轴运行超时', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_20', N'Read', N'DB102', 8, 3, N'BOOL', N'升降轴测距设备故障', N'升降轴测距设备故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_21', N'Read', N'DB102', 8, 4, N'BOOL', N'升降轴断路器故障', N'升降轴断路器故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_22', N'Read', N'DB102', 8, 5, N'BOOL', N'升降轴超出上限位', N'升降轴超出上限位', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_23', N'Read', N'DB102', 8, 6, N'BOOL', N'升降轴超出下限位', N'升降轴超出下限位', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_24', N'Read', N'DB102', 8, 7, N'BOOL', N'升降轴未准备就绪', N'升降轴未准备就绪', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_25', N'Read', N'DB102', 9, 0, N'BOOL', N'升降外部故障', N'升降外部故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_26', N'Read', N'DB102', 9, 1, N'BOOL', N'升降松绳故障', N'升降松绳故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_27', N'Read', N'DB102', 9, 2, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_28', N'Read', N'DB102', 9, 3, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_29', N'Read', N'DB102', 9, 4, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_30', N'Read', N'DB102', 9, 5, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_31', N'Read', N'DB102', 9, 6, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'SrmError_32', N'Read', N'DB102', 9, 7, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_01', N'Read', N'DB102', 16, 0, N'BOOL', N'货叉左伸出超时', N'货叉左伸出超时', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_02', N'Read', N'DB102', 16, 1, N'BOOL', N'货叉右伸出超时', N'货叉右伸出超时', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_03', N'Read', N'DB102', 16, 2, N'BOOL', N'货叉左缩回超时', N'货叉左缩回超时', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_04', N'Read', N'DB102', 16, 3, N'BOOL', N'货叉右缩回超时', N'货叉右缩回超时', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_05', N'Read', N'DB102', 16, 4, N'BOOL', N'左侧外形超限', N'左侧外形超限', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_06', N'Read', N'DB102', 16, 5, N'BOOL', N'右侧外形超限', N'右侧外形超限', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_07', N'Read', N'DB102', 16, 6, N'BOOL', N'货物前超', N'货物前超', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_08', N'Read', N'DB102', 16, 7, N'BOOL', N'货物后超', N'货物后超', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_09', N'Read', N'DB102', 17, 0, N'BOOL', N'超高1(货物高度与送货地址不匹配)', N'超高1(货物高度与送货地址不匹配)', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_10', N'Read', N'DB102', 17, 1, N'BOOL', N'超高2(货物高度与送货地址不匹配)', N'超高2(货物高度与送货地址不匹配)', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_11', N'Read', N'DB102', 17, 2, N'BOOL', N'超高3(货物高度与送货地址不匹配)', N'超高3(货物高度与送货地址不匹配)', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_12', N'Read', N'DB102', 17, 3, N'BOOL', N'货物超高', N'货物超高', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_13', N'Read', N'DB102', 17, 4, N'BOOL', N'左侧极限报警', N'左侧极限报警', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_14', N'Read', N'DB102', 17, 5, N'BOOL', N'右侧极限报警', N'右侧极限报警', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_15', N'Read', N'DB102', 17, 6, N'BOOL', N'货叉变频器故障', N'货叉变频器故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_16', N'Read', N'DB102', 17, 7, N'BOOL', N'货叉断路器/接触器故障', N'货叉断路器/接触器故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_17', N'Read', N'DB102', 18, 0, N'BOOL', N'货物检测传感器故障', N'货物检测传感器故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_18', N'Read', N'DB102', 18, 1, N'BOOL', N'货叉定位传感器故障', N'货叉定位传感器故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_19', N'Read', N'DB102', 18, 2, N'BOOL', N'运行方向错误', N'运行方向错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_20', N'Read', N'DB102', 18, 3, N'BOOL', N'X轴、Y轴、货叉执行动作错误', N'X轴、Y轴、货叉执行动作错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_21', N'Read', N'DB102', 18, 4, N'BOOL', N'设定值错误', N'设定值错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_22', N'Read', N'DB102', 18, 5, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_23', N'Read', N'DB102', 18, 6, N'BOOL', N'货叉伸出超过设定值', N'货叉伸出超过设定值', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_24', N'Read', N'DB102', 18, 7, N'BOOL', N'货叉缩回超过设定值', N'货叉缩回超过设定值', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_25', N'Read', N'DB102', 19, 0, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_26', N'Read', N'DB102', 19, 1, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_27', N'Read', N'DB102', 19, 2, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_28', N'Read', N'DB102', 19, 3, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_29', N'Read', N'DB102', 19, 4, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_30', N'Read', N'DB102', 19, 5, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_31', N'Read', N'DB102', 19, 6, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Error_32', N'Read', N'DB102', 19, 7, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_01', N'Read', N'DB102', 36, 0, N'BOOL', N'主接触器断开(急停、冲顶、超速保护,行走超限动作)', N'主接触器断开(急停、冲顶、超速保护,行走超限动作)', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_02', N'Read', N'DB102', 36, 1, N'BOOL', N'操作盒急停被按下', N'操作盒急停被按下', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_03', N'Read', N'DB102', 36, 2, N'BOOL', N'车载控制柜急停被按下', N'车载控制柜急停被按下', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_04', N'Read', N'DB102', 36, 3, N'BOOL', N'红外通信故障', N'红外通信故障', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_05', N'Read', N'DB102', 36, 4, N'BOOL', N'spare', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_06', N'Read', N'DB102', 36, 5, N'BOOL', N'spare', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_07', N'Read', N'DB102', 36, 6, N'BOOL', N'前安全门被打开', N'前安全门被打开', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OtherError_08', N'Read', N'DB102', 36, 7, N'BOOL', N'后安全门被打开', N'后安全门被打开', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_01', N'Read', N'DB102', 40, 0, N'BOOL', N'WCS下发取货任务时,货叉有货', N'WCS下发取货任务时,货叉有货', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_02', N'Read', N'DB102', 40, 1, N'BOOL', N'WCS下发放货任务时,货叉无货', N'WCS下发放货任务时,货叉无货', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_03', N'Read', N'DB102', 40, 2, N'BOOL', N'WCS下发任务时,任务排号错误', N'WCS下发任务时,任务排号错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_04', N'Read', N'DB102', 40, 3, N'BOOL', N'WCS下发任务时,任务层数错误', N'WCS下发任务时,任务层数错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_05', N'Read', N'DB102', 40, 4, N'BOOL', N'WCS下发任务时,任务列数错误', N'WCS下发任务时,任务列数错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_06', N'Read', N'DB102', 40, 5, N'BOOL', N'WCS下发任务时,任务出入口错误', N'WCS下发任务时,任务出入口错误', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_07', N'Read', N'DB102', 40, 6, N'BOOL', N'库内放货,货物高度与货架高度不匹配', N'库内放货,货物高度与货架高度不匹配', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_08', N'Read', N'DB102', 40, 7, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_09', N'Read', N'DB102', 42, 0, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_10', N'Read', N'DB102', 42, 1, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_11', N'Read', N'DB102', 42, 2, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_12', N'Read', N'DB102', 42, 3, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_13', N'Read', N'DB102', 42, 4, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_14', N'Read', N'DB102', 42, 5, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_15', N'Read', N'DB102', 42, 6, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskError_16', N'Read', N'DB102', 42, 7, N'BOOL', N'备用', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'TaskAction', N'Write', N'DB100', 0, 0, N'INT', N'0=无,1=新任务', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1TaskType_1', N'Write', N'DB100', 2, 0, N'INT', N'任务标志:0-无任务,1-库内取货,3-库外取货,6删除任务', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'XPose_1', N'Write', N'DB100', 4, 0, N'INT', N'取货地址:排(1=左1,2=左2,3=右1,4=右2)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Station_1', N'Write', N'DB100', 6, 0, N'INT', N'取货出入口(1-10)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'YPose_1', N'Write', N'DB100', 8, 0, N'INT', N'取货地址:列(1-最远列)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'ZPose_1', N'Write', N'DB100', 10, 0, N'INT', N'取货地址:层(1-最高层)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1TaskType_2', N'Write', N'DB100', 12, 0, N'INT', N'任务标志:0-无任务,2-库内放货,4库外出库,5重新分配入库地址,6删除任务', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'XPose_2', N'Write', N'DB100', 14, 0, N'INT', N'放货地址:排(1=左', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1Station_2', N'Write', N'DB100', 16, 0, N'INT', N'放货出入口(1-10)1,2=左2,3=右1,4=右2)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'YPose_2', N'Write', N'DB100', 18, 0, N'INT', N'放货地址:列(1-最远列)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'ZPose_2', N'Write', N'DB100', 20, 0, N'INT', N'放货地址:层(1-最高层)', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Fork1TaskNo', N'Write', N'DB100', 22, 0, N'DINT', N'任务号', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'IsFinish', N'Write', N'DB100', 30, 0, N'INT', N'0=无完成,10=任务完成', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'Heart', N'Write', N'DB100', 38, 0, N'INT', N'心跳累加1-32767', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OutStation1Have', N'Read', N'DB101', 36, 7, N'BOOL', N'输送线有货', N'', N'1');
		INSERT INTO I_Device_Address( [Code], [Member], [Type], [Db], [Address], [Address_decimal], [AddressType], [Name], [Note], [value]) VALUES ( @TmpDeviceCode, N'OutStation2Have', N'Read', N'DB101', 37, 7, N'BOOL', N'输送线有货', N'', N'1');
		
		
		FETCH NEXT FROM Vend_Cursor_1 INTO @TmpDeviceCode;
	END
	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  

	COMMIT TRAN;
End try


BEGIN CATCH
	ROLLBACK TRAN;
	CLOSE Vend_Cursor_1   --关闭游标  
	DEALLOCATE Vend_Cursor_1  
	SET @ExecText=ERROR_MESSAGE(); RAISERROR(@ExecText,16,1);
END CATCH
END
GO
/****** Object:  StoredProcedure [dbo].[P_CreatePose]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[P_CreatePose]
as 
begin 
	DECLARE @lie int, @ceng int
	DECLARE @beginLie int, @beginCeng INT
	DECLARE @tmpLie int, @tmpCeng INT

	DECLARE @NameA nvarchar(20)		
	DECLARE @NameB nvarchar(20)	


	--1号 x:1、3, y:1-21, z:1-44
	--2,3号:x:1、3,y:1-28,z:1-12
    
	SET @lie = 20
	SET @ceng =10 

	--开始的排行列数量
	SET @beginLie=1
	SET @beginCeng=1

	--临时使用的排行列
	SET @tmpLie=@beginLie
	SET @tmpCeng=@beginCeng


	--循环,直至超出排行列
	WHILE @tmpLie<@lie+1 and @tmpCeng<@ceng+1
	BEGIN
		SET @NameA='AC'
		SET @NameA = @NameA + '-'
		SET @NameA = @NameA + REPLICATE('0', 2 - LEN(@tmpLie)) + cast(@tmpLie as varchar(10))
		SET @NameA = @NameA + '-'
		SET @NameA = @NameA + REPLICATE('0', 2 - LEN(@tmpCeng)) + cast(@tmpCeng as varchar(10))
		
		SET @NameB='AD'
		SET @NameB = @NameB + '-'
		SET @NameB = @NameB + REPLICATE('0', 2 - LEN(@tmpLie)) + cast(@tmpLie as varchar(10))
		SET @NameB = @NameB + '-'
		SET @NameB = @NameB + REPLICATE('0', 2 - LEN(@tmpCeng)) + cast(@tmpCeng as varchar(10))
	
		INSERT dbo.I_Pose
		(
		    wcName,
		    wcType,
			wcTypeName,
		    wcRoadWay,
		    Xpose,
		    Ypose,
		    Zpose,
		    Station
		)
		VALUES
		(   @NameA, -- wcName - nvarchar(50)
		    'WareCell', -- wcType - nvarchar(50)
			'立库仓位',--wcTypeName --nvarcha(50)
		    1,   -- wcRoadWay - int
		    3,   -- Xpose - int
		    @tmpLie,   -- Ypose - int
		    @tmpCeng,   -- Zpose - int
		    0    -- Station - int
		    )

		INSERT dbo.I_Pose
		(
		    wcName,
		    wcType,
			wcTypeName,
		    wcRoadWay,
		    Xpose,
		    Ypose,
		    Zpose,
		    Station
		)
		VALUES
		(   @NameB, -- wcName - nvarchar(50)
		    'WareCell', -- wcType - nvarchar(50)
			'立库仓位',--wcTypeName --nvarcha(50)
		    1,   -- wcRoadWay - int
		    4,   -- Xpose - int
		    @tmpLie,   -- Ypose - int
		    @tmpCeng,   -- Zpose - int
		    0    -- Station - int
		    )
	

	IF @tmpCeng = @ceng
	BEGIN
	    SET @tmpLie = @tmpLie +1;
		SET @tmpCeng=@beginCeng;
	END
	ELSE
	BEGIN
	    SET @tmpCeng = @tmpCeng +1;
	END

	END


End
GO
/****** Object:  StoredProcedure [dbo].[P_insertPose_NotWarecell]    Script Date: 2020/8/28 16:16:01 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[P_insertPose_NotWarecell]
as
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'EntranceStationA01', N'Entrance', N'入库口(P1070)', 0, 0, 0, 0, 0);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'EntranceStationA02', N'Entrance', N'入库口(P1072)', 0, 0, 0, 0, 0);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'EntranceStationA03', N'Entrance', N'入库口(P1074)', 0, 0, 0, 0, 0);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'EntranceStationA04', N'Entrance', N'入库口(P1076)', 0, 0, 0, 0, 0);

INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'ExitStationA01', N'Exit', N'出库口(P1070)', 1, 0, 0, 0, 0);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'ExitStationA02', N'Exit', N'出库口(P1072)', 2, 0, 0, 0, 0);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'ExitStationA03', N'Exit', N'出库口(P1074)', 1, 0, 0, 0, 0);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'ExitStationA04', N'Exit', N'出库口(P1076)', 2, 0, 0, 0, 0);

INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'InStationA01', N'InStation', N'堆垛机取(1071)', 1, 3, 0, 0, 2);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'InStationA02', N'InStation', N'堆垛机取(1075)', 1, 3, 0, 0, 2);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'InStationA03', N'InStation', N'堆垛机取(1073)', 2, 1, 0, 0, 2);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'InStationA04', N'InStation', N'堆垛机取(1077)', 2, 1, 0, 0, 2);

INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'OutStationA01', N'OutStation', N'堆垛机出(1071)', 1, 1, 0, 0, 1);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'OutStationA02', N'OutStation', N'堆垛机出(1075)', 1, 1, 0, 0, 1);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'OutStationA03', N'OutStation', N'堆垛机出(1073)', 2, 3, 0, 0, 1);
INSERT INTO [dbo].[I_Pose]([wcName], [wcType], [wcTypeName], [wcRoadWay], [Xpose], [Ypose], [Zpose], [Station]) VALUES ( N'OutStationA04', N'OutStation', N'堆垛机出(1077)', 2, 3, 0, 0, 1);
GO
USE [master]
GO
ALTER DATABASE [XinYiWCS_ZJG] SET  READ_WRITE 
GO