Files
jshERP/sql/jsh_erp(第一次建库请使用这个).sql
2019-05-03 17:11:28 +08:00

2014 lines
258 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50704
Source Host : 127.0.0.1:3306
Source Database : jsh_erp
Target Server Type : MYSQL
Target Server Version : 50704
File Encoding : 65001
Date: 2019-05-03 17:07:44
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `databasechangelog`
-- ----------------------------
DROP TABLE IF EXISTS `databasechangelog`;
CREATE TABLE `databasechangelog` (
`ID` varchar(255) NOT NULL,
`AUTHOR` varchar(255) NOT NULL,
`FILENAME` varchar(255) NOT NULL,
`DATEEXECUTED` datetime NOT NULL,
`ORDEREXECUTED` int(11) NOT NULL,
`EXECTYPE` varchar(10) NOT NULL,
`MD5SUM` varchar(35) DEFAULT NULL,
`DESCRIPTION` varchar(255) DEFAULT NULL,
`COMMENTS` varchar(255) DEFAULT NULL,
`TAG` varchar(255) DEFAULT NULL,
`LIQUIBASE` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of databasechangelog
-- ----------------------------
INSERT INTO `databasechangelog` VALUES ('201709282202', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2017-09-28 23:34:07', '1', 'EXECUTED', '7:ca3a38c3a43ee96bf6c7bbf56123d1fc', 'sql', '增加角色bbbb-测试', null, '3.1.1');
INSERT INTO `databasechangelog` VALUES ('201709282227', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2017-09-28 23:34:07', '2', 'EXECUTED', '7:fa335b3dcabb52f38c4300e35b7c0b4c', 'sql', '删除角色bbbb-测试', null, '3.1.1');
INSERT INTO `databasechangelog` VALUES ('201709282322', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2017-09-29 22:39:46', '3', 'EXECUTED', '7:adeea7031bd16af361001ce7d93b1e1a', 'sql', '新增系统配置表', null, '3.1.1');
INSERT INTO `databasechangelog` VALUES ('201709292218', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2017-09-29 22:39:46', '4', 'EXECUTED', '7:f7079f8d7b3fdb92fb6d319789ea9117', 'sql', '新增系统参数数据-公司相关', null, '3.1.1');
INSERT INTO `databasechangelog` VALUES ('201710122314', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2017-10-18 22:39:27', '5', 'EXECUTED', '7:c0885501076d6473461f074cc68535e7', 'sql', '新增商品属性-数据', null, '3.1.1');
INSERT INTO `databasechangelog` VALUES ('201712102245', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2017-12-10 22:51:30', '6', 'EXECUTED', '7:9b0df7eba9ad678b08fd435be32397b1', 'sql', '更新账户表-是否默认列', null, '3.1.1');
INSERT INTO `databasechangelog` VALUES ('201809122201', 'jishenghua', 'liquibase/jsh_erp/db.changelog-jsh_erp-1.0.xml', '2018-10-28 19:56:28', '7', 'EXECUTED', '7:62bde21df811efc41b146eac39da7994', 'sql', '更新用户表-是否系统列', null, '3.1.1');
-- ----------------------------
-- Table structure for `databasechangeloglock`
-- ----------------------------
DROP TABLE IF EXISTS `databasechangeloglock`;
CREATE TABLE `databasechangeloglock` (
`ID` int(11) NOT NULL,
`LOCKED` bit(1) NOT NULL,
`LOCKGRANTED` datetime DEFAULT NULL,
`LOCKEDBY` varchar(255) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of databasechangeloglock
-- ----------------------------
INSERT INTO `databasechangeloglock` VALUES ('1', '', null, null);
-- ----------------------------
-- Table structure for `jsh_account`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_account`;
CREATE TABLE `jsh_account` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`Name` varchar(50) DEFAULT NULL COMMENT '名称',
`SerialNo` varchar(50) DEFAULT NULL COMMENT '编号',
`InitialAmount` decimal(24,6) DEFAULT NULL COMMENT '期初金额',
`CurrentAmount` decimal(24,6) DEFAULT NULL COMMENT '当前余额',
`Remark` varchar(100) DEFAULT NULL COMMENT '备注',
`IsDefault` bit(1) DEFAULT NULL COMMENT '是否默认',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='账户信息';
-- ----------------------------
-- Records of jsh_account
-- ----------------------------
INSERT INTO `jsh_account` VALUES ('4', '南通建行', '652346523465234623', '1200.000000', '215.000000', '建行账户', '', null, '0');
INSERT INTO `jsh_account` VALUES ('9', '流动总账', '65234624523452364', '2000.000000', '393.000000', '现在账户', '', null, '0');
INSERT INTO `jsh_account` VALUES ('10', '支付宝', '123456789@qq.com', '10000.000000', null, '', '', null, '0');
INSERT INTO `jsh_account` VALUES ('11', '微信', '13000000000', '10000.000000', null, '', '', null, '0');
INSERT INTO `jsh_account` VALUES ('12', '上海农行', '65324345234523211', '10000.000000', '0.000000', '', '', null, '0');
INSERT INTO `jsh_account` VALUES ('13', '账户1', 'abcd123', '0.000000', null, '', '', '1', '0');
INSERT INTO `jsh_account` VALUES ('14', '账户1', 'zhanghu1', '0.000000', null, '', '', '117', '0');
INSERT INTO `jsh_account` VALUES ('15', '账户2222', 'zh2222', '0.000000', null, '', '', '117', '0');
INSERT INTO `jsh_account` VALUES ('16', '账户1', '1231241244', '0.000000', null, '', '', '115', '0');
INSERT INTO `jsh_account` VALUES ('17', '账户1', 'zzz111', '0.000000', null, '', '', '63', '0');
INSERT INTO `jsh_account` VALUES ('18', '账户2', '1234131324', '0.000000', null, '', '', '63', '0');
-- ----------------------------
-- Table structure for `jsh_accounthead`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_accounthead`;
CREATE TABLE `jsh_accounthead` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`Type` varchar(50) DEFAULT NULL COMMENT '类型(支出/收入/收款/付款/转账)',
`OrganId` bigint(20) DEFAULT NULL COMMENT '单位Id(收款/付款单位)',
`HandsPersonId` bigint(20) DEFAULT NULL COMMENT '经手人Id',
`ChangeAmount` decimal(24,6) DEFAULT NULL COMMENT '变动金额(优惠/收款/付款/实付)',
`TotalPrice` decimal(24,6) DEFAULT NULL COMMENT '合计金额',
`AccountId` bigint(20) DEFAULT NULL COMMENT '账户(收款/付款)',
`BillNo` varchar(50) DEFAULT NULL COMMENT '单据编号',
`BillTime` datetime DEFAULT NULL COMMENT '单据日期',
`Remark` varchar(100) DEFAULT NULL COMMENT '备注',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`),
KEY `FK9F4C0D8DB610FC06` (`OrganId`),
KEY `FK9F4C0D8DAAE50527` (`AccountId`),
KEY `FK9F4C0D8DC4170B37` (`HandsPersonId`)
) ENGINE=InnoDB AUTO_INCREMENT=97 DEFAULT CHARSET=utf8 COMMENT='财务主表';
-- ----------------------------
-- Records of jsh_accounthead
-- ----------------------------
INSERT INTO `jsh_accounthead` VALUES ('57', '收预付款', '8', '3', null, '1000.000000', null, '2342134', '2017-06-27 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('61', '收预付款', '9', '3', null, '33.000000', null, 'SYF2017062901721', '2017-06-29 00:00:00', 'aaaaaa', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('67', '收预付款', '10', '4', null, '2100.000000', null, 'SYF2017070222414', '2017-07-02 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('70', '支出', '4', '3', '-60.000000', '-60.000000', '4', 'ZC20170703233735', '2017-07-03 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('74', '转账', null, '3', '-100.000000', '-100.000000', '4', 'ZZ2017070323489', '2017-07-03 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('77', '收入', '2', '3', '40.000000', '40.000000', '4', 'SR20170704222634', '2017-07-04 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('78', '收预付款', '9', '3', null, '200.000000', null, 'SYF201707050257', '2017-07-05 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('79', '收预付款', '9', '3', null, '100.000000', null, 'SYF20170705076', '2017-07-05 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('82', '收款', '2', '3', '0.000000', '2.600000', null, 'SK20171008191440', '2017-10-09 00:08:11', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('83', '付款', '1', '4', '0.000000', '-20.000000', null, 'FK20171008232825', '2017-10-08 00:00:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('84', '收入', '2', '4', '0.000000', '21.000000', '10', 'SR20171009000300', '2017-10-09 00:03:00', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('85', '收入', '2', '3', '22.000000', '22.000000', '11', 'SR20171009000637', '2017-10-09 00:06:37', '备注123 备注123 备注123', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('86', '转账', null, '4', '-22.000000', '-22.000000', '10', 'ZZ20171009000719', '2017-10-09 00:07:19', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('87', '付款', '4', '4', '10.000000', '-33.000000', null, 'FK20171009000747', '2017-10-09 00:07:47', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('88', '收款', '2', '4', '0.000000', '2.800000', null, 'SK20171024220754', '2017-10-24 22:07:54', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('89', '收款', '2', '4', '0.000000', '11.000000', null, 'SK20171030232535', '2017-10-30 23:25:35', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('90', '收款', '2', '4', '0.000000', '10.000000', null, 'SK20171119231440', '2017-11-19 23:14:40', '', null, '0');
INSERT INTO `jsh_accounthead` VALUES ('91', '收入', '48', '9', '66.000000', '6.000000', '13', 'SR20190319221438', '2019-03-19 22:14:38', '', '1', '0');
INSERT INTO `jsh_accounthead` VALUES ('92', '支出', '50', '9', '-33.000000', '-33.000000', '13', 'ZC20190319221454', '2019-03-19 22:14:54', '', '1', '0');
INSERT INTO `jsh_accounthead` VALUES ('93', '收款', '48', '9', null, '44.000000', null, 'SK20190319221513', '2019-03-19 22:15:13', '', '1', '0');
INSERT INTO `jsh_accounthead` VALUES ('94', '付款', '50', '9', null, '-66.000000', null, 'FK20190319221525', '2019-03-19 22:15:25', '', '1', '0');
INSERT INTO `jsh_accounthead` VALUES ('95', '收预付款', '49', '9', null, '6.000000', null, 'SYF20190319221556', '2019-03-19 22:15:56', '', '1', '0');
INSERT INTO `jsh_accounthead` VALUES ('96', '收入', '5', '4', '22.000000', '22.000000', '12', 'SR20190321235925', '2019-03-21 23:59:25', '', null, '0');
-- ----------------------------
-- Table structure for `jsh_accountitem`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_accountitem`;
CREATE TABLE `jsh_accountitem` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`HeaderId` bigint(20) NOT NULL COMMENT '表头Id',
`AccountId` bigint(20) DEFAULT NULL COMMENT '账户Id',
`InOutItemId` bigint(20) DEFAULT NULL COMMENT '收支项目Id',
`EachAmount` decimal(24,6) DEFAULT NULL COMMENT '单项金额',
`Remark` varchar(100) DEFAULT NULL COMMENT '单据备注',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`),
KEY `FK9F4CBAC0AAE50527` (`AccountId`),
KEY `FK9F4CBAC0C5FE6007` (`HeaderId`),
KEY `FK9F4CBAC0D203EDC5` (`InOutItemId`)
) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8 COMMENT='财务子表';
-- ----------------------------
-- Records of jsh_accountitem
-- ----------------------------
INSERT INTO `jsh_accountitem` VALUES ('58', '57', '9', null, '1000.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('62', '61', '4', null, '33.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('68', '67', '4', null, '2100.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('71', '70', null, '11', '60.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('75', '74', '9', null, '100.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('78', '77', null, '14', '40.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('79', '78', '9', null, '200.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('80', '79', '9', null, '100.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('83', '82', '10', null, '2.600000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('84', '83', '10', null, '-20.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('85', '84', null, '13', '21.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('86', '85', null, '12', '22.000000', '44', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('87', '86', '11', null, '22.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('88', '87', '10', null, '-33.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('89', '88', '10', null, '2.800000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('90', '89', '11', null, '11.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('91', '90', '12', null, '10.000000', '', null, '0');
INSERT INTO `jsh_accountitem` VALUES ('92', '91', null, '16', '66.000000', '', '1', '0');
INSERT INTO `jsh_accountitem` VALUES ('93', '92', null, '17', '33.000000', '', '1', '0');
INSERT INTO `jsh_accountitem` VALUES ('94', '93', '13', null, '44.000000', '', '1', '0');
INSERT INTO `jsh_accountitem` VALUES ('95', '94', '13', null, '-66.000000', '', '1', '0');
INSERT INTO `jsh_accountitem` VALUES ('96', '95', '13', null, '6.000000', '', '1', '0');
INSERT INTO `jsh_accountitem` VALUES ('97', '96', null, '14', '22.000000', '', null, '0');
-- ----------------------------
-- Table structure for `jsh_app`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_app`;
CREATE TABLE `jsh_app` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`Number` varchar(50) DEFAULT NULL COMMENT '编号',
`Name` varchar(50) DEFAULT NULL COMMENT '名称',
`Type` varchar(50) DEFAULT NULL COMMENT '类型',
`Icon` varchar(50) DEFAULT NULL COMMENT '图标',
`URL` varchar(50) DEFAULT NULL COMMENT '编号',
`Width` varchar(50) DEFAULT NULL COMMENT '宽度',
`Height` varchar(50) DEFAULT NULL COMMENT '高度',
`ReSize` bit(1) DEFAULT NULL COMMENT '是否可改变大小',
`OpenMax` bit(1) DEFAULT NULL COMMENT '最大化',
`Flash` bit(1) DEFAULT NULL COMMENT '是否切换',
`ZL` varchar(50) DEFAULT NULL COMMENT '类型',
`Sort` varchar(50) DEFAULT NULL COMMENT '排序',
`Remark` varchar(200) DEFAULT NULL COMMENT '备注',
`Enabled` bit(1) DEFAULT NULL COMMENT '是否启用',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COMMENT='应用表';
-- ----------------------------
-- Records of jsh_app
-- ----------------------------
INSERT INTO `jsh_app` VALUES ('3', '00', '系统管理', 'app', '0000000004.png', '', '1240', '600', '', '', '', 'desk', '198', '', '', '0');
INSERT INTO `jsh_app` VALUES ('6', '02', '个人信息', 'app', '0000000005.png', '../user/password.html', '600', '400', '', '', '', 'dock', '200', '', '', '0');
INSERT INTO `jsh_app` VALUES ('7', '01', '基础数据', 'app', '0000000006.png', '', '1350', '630', '', '', '', 'desk', '120', '', '', '0');
INSERT INTO `jsh_app` VALUES ('22', '03', '报表查询', 'app', '0000000022.png', '', '1350', '630', '', '', '', 'desk', '115', '', '', '0');
INSERT INTO `jsh_app` VALUES ('23', '04', '零售管理', 'app', 'resizeApi.png', '', '1350', '630', '', '', '', 'desk', '025', '', '', '0');
INSERT INTO `jsh_app` VALUES ('24', '05', '采购管理', 'app', 'buy.png', '', '1350', '630', '', '', '', 'desk', '027', '', '', '0');
INSERT INTO `jsh_app` VALUES ('25', '06', '销售管理', 'app', 'sale.png', '', '1350', '630', '', '', '', 'desk', '028', '', '', '0');
INSERT INTO `jsh_app` VALUES ('26', '07', '财务管理', 'app', 'money.png', '', '1350', '630', '', '', '', 'desk', '035', '', '', '0');
INSERT INTO `jsh_app` VALUES ('27', '08', '仓库管理', 'app', 'depot.png', '', '1350', '630', '', '', '', 'desk', '029', '', '', '0');
-- ----------------------------
-- Table structure for `jsh_asset`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_asset`;
CREATE TABLE `jsh_asset` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`assetnameID` bigint(20) NOT NULL COMMENT '资产名称id',
`location` varchar(255) DEFAULT NULL COMMENT '位置',
`labels` varchar(255) DEFAULT NULL COMMENT '标签:以空格为分隔符',
`status` smallint(6) DEFAULT NULL COMMENT '资产的状态0==在库1==在用2==消费',
`userID` bigint(20) DEFAULT NULL COMMENT '用户ID',
`price` decimal(24,6) DEFAULT NULL COMMENT '购买价格',
`purchasedate` datetime DEFAULT NULL COMMENT '购买日期',
`periodofvalidity` datetime DEFAULT NULL COMMENT '有效日期',
`warrantydate` datetime DEFAULT NULL COMMENT '保修日期',
`assetnum` varchar(255) DEFAULT NULL COMMENT '资产编号',
`serialnum` varchar(255) DEFAULT NULL COMMENT '资产序列号',
`supplier` bigint(20) NOT NULL COMMENT '供应商',
`description` longtext COMMENT '描述信息',
`addMonth` longtext COMMENT '资产添加时间,统计报表使用',
`createtime` datetime DEFAULT NULL COMMENT '创建时间',
`creator` bigint(20) DEFAULT NULL COMMENT '创建人',
`updatetime` datetime DEFAULT NULL COMMENT '更新时间',
`updator` bigint(20) DEFAULT NULL COMMENT '更新人',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`id`),
KEY `FK353690ED9B6CB285` (`assetnameID`),
KEY `FK353690EDAD45B659` (`creator`),
KEY `FK353690ED27D23FE4` (`supplier`),
KEY `FK353690ED61FE182C` (`updator`),
KEY `FK353690ED3E226853` (`userID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='资产记录表';
-- ----------------------------
-- Records of jsh_asset
-- ----------------------------
INSERT INTO `jsh_asset` VALUES ('1', '27', 'weizhi', '', '0', null, '11.000000', '2016-10-22 00:00:00', '2016-10-21 00:00:00', '2016-11-03 00:00:00', '1231241', '123124123', '2', '', '2016-10', '2016-10-22 20:04:48', '63', '2016-10-22 20:04:48', '63', null, '0');
INSERT INTO `jsh_asset` VALUES ('3', '29', 'weizhi', null, '0', null, '11.000000', '2016-10-22 00:00:00', '2016-10-21 00:00:00', '2016-11-03 00:00:00', '1231241', '123124123', '2', null, null, '2017-07-22 18:42:14', null, '2017-07-22 18:42:14', null, null, '0');
-- ----------------------------
-- Table structure for `jsh_assetcategory`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_assetcategory`;
CREATE TABLE `jsh_assetcategory` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`assetname` varchar(255) NOT NULL COMMENT '资产类型名称',
`isystem` tinyint(4) NOT NULL COMMENT '是否系统自带 0==系统 1==非系统',
`description` varchar(500) DEFAULT NULL COMMENT '描述信息',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='资产类型';
-- ----------------------------
-- Records of jsh_assetcategory
-- ----------------------------
INSERT INTO `jsh_assetcategory` VALUES ('14', '递延资产', '1', '递延资产', null, '0');
INSERT INTO `jsh_assetcategory` VALUES ('15', '无形资产', '1', '无形资产', null, '0');
INSERT INTO `jsh_assetcategory` VALUES ('16', '长期投资', '1', '长期投资', null, '0');
INSERT INTO `jsh_assetcategory` VALUES ('17', '固定资产', '1', '固定资产', null, '0');
INSERT INTO `jsh_assetcategory` VALUES ('18', '流动资产', '1', '流动资产', null, '0');
-- ----------------------------
-- Table structure for `jsh_assetname`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_assetname`;
CREATE TABLE `jsh_assetname` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`assetname` varchar(255) NOT NULL COMMENT '资产名称',
`assetcategoryID` bigint(20) NOT NULL COMMENT '资产类型',
`isystem` smallint(6) NOT NULL COMMENT '是否系统自带 0==系统 1==非系统',
`description` longtext COMMENT '描述信息',
`isconsumables` smallint(6) DEFAULT NULL COMMENT '是否为耗材 0==否 1==是 耗材状态只能是消费',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`id`),
KEY `FKA4ADCCF866BC8AD3` (`assetcategoryID`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COMMENT='资产信息';
-- ----------------------------
-- Records of jsh_assetname
-- ----------------------------
INSERT INTO `jsh_assetname` VALUES ('1', '联想Y450', '17', '1', '', '1', null, '0');
INSERT INTO `jsh_assetname` VALUES ('2', '惠普打印机', '15', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('12', '乐萌水杯', '16', '1', '', '1', null, '0');
INSERT INTO `jsh_assetname` VALUES ('13', '机顶盒', '17', '1', '机顶盒', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('14', 'TCL电视', '17', '1', '', '1', null, '0');
INSERT INTO `jsh_assetname` VALUES ('15', '手机', '17', '1', '', '1', null, '0');
INSERT INTO `jsh_assetname` VALUES ('16', '硬盘', '16', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('17', '毛笔', '17', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('18', '杯子', '17', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('19', '建造师证书', '15', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('20', '算量软件', '14', '1', '', '1', null, '0');
INSERT INTO `jsh_assetname` VALUES ('21', 'cad软件', '15', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('22', '办公桌', '17', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('23', '笔记本', '17', '1', '笔记本', '1', null, '0');
INSERT INTO `jsh_assetname` VALUES ('24', '打印机', '17', '1', '打印机', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('25', '电脑', '17', '1', '电脑', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('26', '电动车', '16', '1', '电动车', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('27', '电源线', '17', '1', '电源线', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('28', '电源线666', '17', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('29', '电源线777', '17', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('30', '电源线8', '17', '1', '', '0', null, '0');
INSERT INTO `jsh_assetname` VALUES ('31', '电源线9', '17', '1', '', '0', null, '0');
-- ----------------------------
-- Table structure for `jsh_depot`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_depot`;
CREATE TABLE `jsh_depot` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`name` varchar(20) DEFAULT NULL COMMENT '仓库名称',
`address` varchar(50) DEFAULT NULL COMMENT '仓库地址',
`warehousing` decimal(24,6) DEFAULT NULL COMMENT '仓储费',
`truckage` decimal(24,6) DEFAULT NULL COMMENT '搬运费',
`type` int(10) DEFAULT NULL COMMENT '类型',
`sort` varchar(10) DEFAULT NULL COMMENT '排序',
`remark` varchar(100) DEFAULT NULL COMMENT '描述',
`principal` bigint(20) DEFAULT NULL COMMENT '负责人',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
`is_default` bit(1) DEFAULT NULL COMMENT '是否默认',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='仓库表';
-- ----------------------------
-- Records of jsh_depot
-- ----------------------------
INSERT INTO `jsh_depot` VALUES ('1', '叠石桥店', '地址222', '33.000000', '22.000000', '0', '2', '上海33', '95', null, '0', null);
INSERT INTO `jsh_depot` VALUES ('2', '公司总部', '地址12355', '44.000000', '22.220000', '0', '1', '总部', '64', null, '0', null);
INSERT INTO `jsh_depot` VALUES ('3', '金沙店', '地址666', '31.000000', '4.000000', '0', '3', '苏州', '64', null, '0', null);
INSERT INTO `jsh_depot` VALUES ('4', '1268200294', '', null, null, '1', '1', '', null, null, '0', null);
INSERT INTO `jsh_depot` VALUES ('5', '1268787965', null, null, null, '1', '3', '', null, null, '0', null);
INSERT INTO `jsh_depot` VALUES ('6', '1269520625', null, null, null, '1', '2', '', null, null, '0', null);
INSERT INTO `jsh_depot` VALUES ('7', '仓库1', '', null, null, '0', '', '', null, '1', '0', null);
INSERT INTO `jsh_depot` VALUES ('8', '仓库1111', '', null, null, '0', '', '', '117', '117', '0', null);
INSERT INTO `jsh_depot` VALUES ('9', '仓库567', '', null, null, '0', '', '', '117', '117', '0', null);
INSERT INTO `jsh_depot` VALUES ('10', '仓库321342', '', null, null, '0', '', '', null, '117', '0', null);
INSERT INTO `jsh_depot` VALUES ('11', '仓库321321', '', null, null, '0', '', '', null, '117', '0', null);
INSERT INTO `jsh_depot` VALUES ('12', '仓库111222', '', null, null, '0', '', '', null, '117', '0', null);
INSERT INTO `jsh_depot` VALUES ('13', '仓库1', '', null, null, '0', '', '', null, '115', '0', null);
INSERT INTO `jsh_depot` VALUES ('14', '仓库1', '', null, null, '0', '', '', null, '63', '0', '');
INSERT INTO `jsh_depot` VALUES ('15', '仓库2', '', null, null, '0', '', '', null, '63', '0', '');
-- ----------------------------
-- Table structure for `jsh_depothead`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_depothead`;
CREATE TABLE `jsh_depothead` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`Type` varchar(50) DEFAULT NULL COMMENT '类型(出库/入库)',
`SubType` varchar(50) DEFAULT NULL COMMENT '出入库分类',
`ProjectId` bigint(20) DEFAULT NULL COMMENT '项目Id',
`DefaultNumber` varchar(50) DEFAULT NULL COMMENT '初始票据号',
`Number` varchar(50) DEFAULT NULL COMMENT '票据号',
`OperPersonName` varchar(50) DEFAULT NULL COMMENT '操作员名字',
`CreateTime` datetime DEFAULT NULL COMMENT '创建时间',
`OperTime` datetime DEFAULT NULL COMMENT '出入库时间',
`OrganId` bigint(20) DEFAULT NULL COMMENT '供应商Id',
`HandsPersonId` bigint(20) DEFAULT NULL COMMENT '采购/领料-经手人Id',
`AccountId` bigint(20) DEFAULT NULL COMMENT '账户Id',
`ChangeAmount` decimal(24,6) DEFAULT NULL COMMENT '变动金额(收款/付款)',
`AllocationProjectId` bigint(20) DEFAULT NULL COMMENT '调拨时对方项目Id',
`TotalPrice` decimal(24,6) DEFAULT NULL COMMENT '合计金额',
`PayType` varchar(50) DEFAULT NULL COMMENT '付款类型(现金、记账等)',
`Remark` varchar(1000) DEFAULT NULL COMMENT '备注',
`Salesman` varchar(50) DEFAULT NULL COMMENT '业务员(可以多个)',
`AccountIdList` varchar(50) DEFAULT NULL COMMENT '多账户ID列表',
`AccountMoneyList` varchar(200) DEFAULT '' COMMENT '多账户金额列表',
`Discount` decimal(24,6) DEFAULT NULL COMMENT '优惠率',
`DiscountMoney` decimal(24,6) DEFAULT NULL COMMENT '优惠金额',
`DiscountLastMoney` decimal(24,6) DEFAULT NULL COMMENT '优惠后金额',
`OtherMoney` decimal(24,6) DEFAULT NULL COMMENT '销售或采购费用合计',
`OtherMoneyList` varchar(200) DEFAULT NULL COMMENT '销售或采购费用涉及项目Id数组包括快递、招待等',
`OtherMoneyItem` varchar(200) DEFAULT NULL COMMENT '销售或采购费用涉及项目(包括快递、招待等)',
`AccountDay` int(10) DEFAULT NULL COMMENT '结算天数',
`Status` varchar(1) DEFAULT '0' COMMENT '状态0未审核、1已审核、2已转采购|销售',
`LinkNumber` varchar(50) DEFAULT NULL COMMENT '关联订单号',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`),
KEY `FK2A80F214CA633ABA` (`AllocationProjectId`),
KEY `FK2A80F214C4170B37` (`HandsPersonId`),
KEY `FK2A80F214B610FC06` (`OrganId`),
KEY `FK2A80F2142888F9A` (`ProjectId`),
KEY `FK2A80F214AAE50527` (`AccountId`)
) ENGINE=InnoDB AUTO_INCREMENT=199 DEFAULT CHARSET=utf8 COMMENT='单据主表';
-- ----------------------------
-- Records of jsh_depothead
-- ----------------------------
INSERT INTO `jsh_depothead` VALUES ('7', '入库', '采购', null, 'GHDD201708120002', 'GHDD201708120002', '季圣华', '2017-08-12 12:04:07', '2017-08-12 12:03:23', '1', null, '12', '-30.000000', null, '-36.000000', '现付', 'abcdefg', '', null, null, '10.000000', '3.600000', '32.400000', '30.000000', '[\"10\",\"9\"]', '[\"10\",\"20\"]', '45', '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('8', '出库', '销售', null, 'XHDD201708120001', 'XHDD201708120001', '季圣华', '2017-08-12 18:10:14', '2017-08-12 18:09:45', '2', null, '11', '17.000000', null, '24.000000', '现付', '', '<7>,<6>', null, null, '22.000000', '5.280000', '18.720000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('9', '入库', '采购', null, 'GHDD201708120003', 'GHDD201708120003', '季圣华', '2017-08-12 21:01:09', '2017-08-12 21:00:36', '1', null, '11', '-100.000000', null, '-120.000000', '现付', '', '', null, null, '10.000000', '12.000000', '108.000000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('10', '入库', '采购', null, 'GHDD201708120004', 'GHDD201708120004', '季圣华', '2017-08-12 21:10:42', '2017-08-12 21:10:16', '1', null, '4', '-10.000000', null, '-12.000000', '现付', '', '', null, null, '10.000000', '1.200000', '10.800000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('11', '入库', '采购', null, 'GHDD201708120005', 'jshenghua001', '季圣华', '2017-08-12 22:07:44', '2017-08-12 22:06:37', '1', null, '12', '-20.000000', null, '-24.000000', '现付', '', '', null, null, '10.000000', '2.400000', '21.600000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('12', '入库', '采购', null, 'GHDD201708120006', 'GHDD201708120006', '季圣华', '2017-08-12 22:17:11', '2017-08-12 22:16:35', '1', null, '11', '-10.000000', null, '-12.000000', '现付', '', '', null, null, '10.000000', '1.200000', '10.800000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('13', '入库', '采购', null, 'GHDD201708120007', 'jishenghua3', '季圣华', '2017-08-12 22:17:52', '2017-08-12 22:17:14', '1', null, '4', '-20.000000', null, '-24.000000', '现付', '', '', null, null, '10.000000', '2.400000', '21.600000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('14', '入库', '采购', null, 'GHDD201708120008', 'jishenghua004', '季圣华', '2017-08-12 22:19:37', '2017-08-12 22:19:07', '1', null, '11', '-30.000000', null, '-36.000000', '现付', '', '', null, null, '10.000000', '3.600000', '32.400000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('16', '入库', '采购', null, 'GHDD201708120009', 'jishenghua005', '季圣华', '2017-08-12 22:26:23', '2017-08-12 22:25:14', '1', null, '10', '-20.000000', null, '-24.000000', '现付', '', '', null, null, '10.000000', '2.400000', '21.600000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('17', '入库', '采购', null, 'GHDD201708120010', 'GHDD201708120010', '季圣华', '2017-08-12 22:28:20', '2017-08-12 22:28:02', '1', null, '9', '-30.000000', null, '-36.000000', '现付', '', '', null, null, '10.000000', '3.600000', '32.400000', null, '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('18', '入库', '采购', null, 'GHDD201708120011', 'GHDD201708120011', '季圣华', '2017-08-12 22:30:08', '2017-08-12 22:29:48', '1', null, '4', '-20.000000', null, '-24.000000', '现付', '', '', null, null, '10.000000', '2.400000', '21.600000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('19', '入库', '采购', null, 'GHDD201708120012', 'GHDD201708120012', '季圣华', '2017-08-12 22:30:57', '2017-08-12 22:29:32', '1', null, null, '-10.000000', null, '-26.400000', '现付', '', '', '[\"4\"]', '[\"-10\"]', '10.000000', '2.640000', '23.760000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('20', '入库', '采购', null, 'GHDD201708120013', 'GHDD201708120013', '季圣华', '2017-08-12 22:46:43', '2017-08-12 22:45:55', '1', null, '10', '-23.000000', null, '-36.000000', '现付', '', '', null, null, '20.000000', '7.200000', '28.800000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('21', '入库', '采购', null, 'GHDD201708120014', 'GHDD201708120014', '季圣华', '2017-08-12 22:46:52', '2017-08-12 22:45:59', '1', null, '11', '-20.000000', null, '-26.400000', '现付', '', '', null, null, '10.000000', '2.640000', '23.760000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('22', '入库', '采购', null, 'GHDD201708120015', 'GHDD201708120015', '季圣华', '2017-08-12 23:49:32', '2017-08-12 23:48:24', '1', null, '11', '-20.000000', null, '-24.000000', '现付', '', '', null, null, '10.000000', '2.400000', '21.600000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('23', '入库', '采购', null, 'GHDD201708140001', 'GHDD201708140001', '季圣华', '2017-08-14 20:41:54', '2017-08-14 20:40:49', '1', null, '4', '-300.000000', null, '-360.000000', '现付', '', '', null, null, '10.000000', '36.000000', '324.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('24', '入库', '采购', null, 'GHDD201708150001', 'GHDD201708150001', '季圣华', '2017-08-15 21:36:25', '2017-08-15 21:35:38', '1', null, '11', '-675.000000', null, '-750.000000', '现付', '', '', null, null, '10.000000', '75.000000', '675.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('25', '入库', '采购', null, 'GHDD201708150002', 'GHDD201708150002', '季圣华', '2017-08-15 22:31:46', '2017-08-15 22:29:47', '1', null, null, '-33.000000', null, '-75.000000', '现付', 'ababab', '', '[\"9\",\"10\"]', '[\"-22\",\"-11\"]', '10.000000', '7.500000', '67.500000', '22.000000', '[\"10\",\"8\"]', '[\"11\",\"11\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('26', '入库', '采购', null, 'GHDD201708160001', 'GHDD201708160001', '季圣华', '2017-08-16 23:50:35', '2017-08-16 23:47:42', '4', null, '9', '-162.000000', null, '-150.000000', '现付', '', '', null, null, '10.000000', '18.000000', '162.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('27', '入库', '采购', null, 'GHDD201708180001', 'GHDD201708180001', '季圣华', '2017-08-18 00:25:58', '2017-08-18 00:25:43', '1', null, '11', '-74.250000', null, '-75.000000', '现付', '', '', null, null, '10.000000', '8.250000', '74.250000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('28', '入库', '采购', null, 'GHDD201708270001', 'GHDD201708270001', '季圣华', '2017-08-27 23:10:44', '2017-08-27 23:06:05', '46', null, '10', '-64.800000', null, '-72.000000', '现付', '', '', null, null, '10.000000', '7.200000', '64.800000', '10.000000', '[\"10\"]', '[\"10\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('29', '出库', '销售', null, 'XSCK201708280001', 'XSCK201708280001', '季圣华', '2017-08-28 23:06:40', '2017-08-28 23:05:11', '2', null, '11', '120.850000', null, '130.000000', '现付', '', '<7>', null, null, '10.000000', '13.650000', '122.850000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('30', '入库', '销售退货', null, 'XSTH201708280001', 'XSTH201708280001', '季圣华', '2017-08-28 23:13:08', '2017-08-28 23:12:48', '2', null, '10', '-48.000000', null, '-48.000000', '现付', '', '<5>,<6>', null, null, '0.000000', '0.000000', '48.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('31', '出库', '采购退货', null, 'CGTH201708280001', 'CGTH201708280001', '季圣华', '2017-08-28 23:15:45', '2017-08-28 23:15:21', '1', null, '10', '28.600000', null, '26.000000', '现付', '', '', null, null, '0.000000', '0.000000', '28.600000', '12.000000', '[\"10\"]', '[\"12\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('32', '入库', '其它', null, 'QTRK201708280001', 'QTRK201708280001', '季圣华', '2017-08-28 23:17:55', '2017-08-28 23:17:33', '1', null, null, null, null, '12.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('33', '出库', '其它', null, 'QTCK201708280001', 'QTCK201708280001', '季圣华', '2017-08-28 23:21:14', '2017-08-28 23:20:36', '2', null, null, null, null, '65.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('37', '出库', '调拨', null, 'DBCK201708280002', 'DBCK201708280002', '季圣华', '2017-08-28 23:56:34', '2017-08-28 23:56:10', null, null, null, null, null, '1.300000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('38', '出库', '调拨', null, 'DBCK201708290001', 'DBCK201708290001', '季圣华', '2017-08-29 00:20:11', '2017-08-29 00:19:58', null, null, null, null, null, '2.600000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('41', '出库', '零售', null, 'LSCK201708290002', 'LSCK201708290002', '季圣华', '2017-08-29 23:29:39', '2017-08-29 23:29:06', '7', null, '10', '42.000000', null, '42.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('42', '出库', '零售', null, 'LSCK201708290003', 'LSCK201708290003', '季圣华', '2017-08-29 23:35:12', '2017-08-29 23:33:21', '7', null, '11', '11.000000', null, '11.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('43', '出库', '零售', null, 'LSCK201708290004', 'LSCK201708290004', '季圣华', '2017-08-29 23:39:44', '2017-08-29 23:39:28', '7', null, '9', '12.100000', null, '12.100000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('44', '入库', '零售退货', null, 'LSTH201708290001', 'LSTH201708290001', '季圣华', '2017-08-29 23:48:43', '2017-08-29 23:46:35', '7', null, '10', '-2.200000', null, '-2.200000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('45', '入库', '零售退货', null, 'LSTH201708290002', 'LSTH201708290002', '季圣华', '2017-08-29 23:51:55', '2017-08-29 23:51:31', '7', null, '12', '-3.300000', null, '-3.300000', '现付', '', '', null, null, null, null, null, null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('48', '出库', '零售', null, 'LSCK201708310001', 'LSCK201708310001', '季圣华', '2017-08-31 00:30:31', '2017-08-31 00:29:10', '7', null, null, '12.000000', null, '12.000000', '现付', '', '', '[\"10\",\"11\"]', '[\"15\",\"20\"]', null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('49', '出库', '零售', null, 'LSCK201708310002', 'LSCK201708310002', '季圣华', '2017-08-31 00:57:40', '2017-08-31 00:57:08', '7', null, null, '12.000000', null, '12.000000', '现付', '', '', '[\"9\",\"11\"]', '[\"22\",\"11\"]', null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('50', '出库', '零售', null, 'LSCK201709030001', 'LSCK201709030001', '季圣华', '2017-09-03 12:51:50', '2017-09-03 12:51:21', '10', null, '10', '22.000000', null, '22.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('52', '出库', '零售', null, 'LSCK201709040001', 'LSCK201709040001', '季圣华', '2017-09-04 21:32:49', '2017-09-04 21:31:24', '7', null, '11', '24.200000', null, '24.200000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('53', '出库', '零售', null, 'LSCK201709040002', 'LSCK201709040002', '季圣华', '2017-09-04 21:34:02', '2017-09-04 21:33:30', '7', null, '9', '36.300000', null, '36.300000', '现付', '', '', null, null, null, null, null, null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('54', '入库', '采购', null, 'CGRK201709040001', 'CGRK201709040001', '季圣华', '2017-09-04 22:20:12', '2017-09-04 22:13:00', '1', null, '10', '-10.800000', null, '-12.000000', '现付', '', '', null, null, '10.000000', '1.200000', '10.800000', '12.000000', '[\"9\"]', '[\"12\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('57', '入库', '采购', null, 'CGRK201709050001', 'CGRK201709050001', '季圣华', '2017-09-05 22:37:54', '2017-09-05 22:37:31', '1', null, '11', '-182.520000', null, '-182.400000', '现付', '', '', null, null, '0.000000', '0.000000', '182.520000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('63', '入库', '采购', null, 'CGRK201709170001', 'CGRK201709170001', '季圣华', '2017-09-17 21:45:14', '2017-09-17 21:44:50', '1', null, '10', '-13.200000', null, '-12.000000', '现付', '', '', null, null, '0.000000', '0.000000', '13.200000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('65', '入库', '采购', null, 'CGRK201709170002', 'CGRK201709170002', '季圣华', '2017-09-17 21:47:07', '2017-09-17 20:45:55', '1', null, null, '-42.000000', null, '-39.000000', '现付', '', '', '[\"12\",\"9\"]', '[\"-20\",\"-22\"]', '0.000000', '0.000000', '42.900000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('68', '其它', '组装单', null, 'ZZD2017092000001', 'ZZD2017092000001', '季圣华', '2017-09-20 23:29:28', '2017-09-20 23:29:13', null, null, null, null, null, '7.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('69', '其它', '拆卸单', null, 'CXD2017092000001', 'CXD2017092000001', '季圣华', '2017-09-20 23:40:55', '2017-09-20 23:40:41', null, null, null, null, null, '0.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('70', '入库', '采购', null, 'CGRK201709210001', 'CGRK201709210001', '季圣华', '2017-09-21 22:37:20', '2017-09-21 22:36:37', '1', null, null, '-50.000000', null, '-50.000000', '现付', '', '', '[\"4\",\"9\"]', '[\"-10\",\"-40\"]', '0.000000', '0.000000', '50.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('71', '入库', '销售退货', null, 'XSTH201709210001', 'XSTH201709210001', '季圣华', '2017-09-21 22:39:00', '2017-09-21 22:38:37', '2', null, '11', '-48.000000', null, '-48.000000', '现付', '', '<6>,<7>', null, null, '0.000000', '0.000000', '48.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('72', '入库', '其它', null, 'QTRK201709210001', 'QTRK201709210001', '季圣华', '2017-09-21 22:39:26', '2017-09-21 22:39:14', '4', null, null, null, null, '24.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('73', '出库', '销售', null, 'XSCK201709210001', 'XSCK201709210001', '季圣华', '2017-09-21 22:40:01', '2017-09-21 22:39:44', '2', null, '11', '10.000000', null, '10.000000', '现付', '', '<6>', null, null, '0.000000', '0.000000', '10.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('74', '出库', '采购退货', null, 'CGTH201709210001', 'CGTH201709210001', '季圣华', '2017-09-21 22:40:57', '2017-09-21 22:40:38', '4', null, '4', '5.000000', null, '5.000000', '现付', '', '', null, null, '0.000000', '0.000000', '5.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('75', '出库', '其它', null, 'QTCK201709210001', 'QTCK201709210001', '季圣华', '2017-09-21 22:41:15', '2017-09-21 22:41:02', '2', null, null, null, null, '13.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('76', '出库', '调拨', null, 'DBCK201709210001', 'DBCK201709210001', '季圣华', '2017-09-21 22:41:36', '2017-09-21 22:41:19', null, null, null, null, null, '10.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('77', '出库', '零售', null, 'LSCK201709210001', 'LSCK201709210001', '季圣华', '2017-09-21 22:42:44', '2017-09-21 22:42:21', '7', null, '4', '2.200000', null, '2.200000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('78', '入库', '零售退货', null, 'LSTH201709210001', 'LSTH201709210001', '季圣华', '2017-09-21 22:46:07', '2017-09-21 22:45:49', '7', null, '4', '-2.200000', null, '-2.200000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('79', '入库', '采购', null, 'CGRK201709210002', 'CGRK201709210002', '季圣华', '2017-09-21 23:16:37', '2017-09-21 23:16:21', '1', null, '11', '-23.760000', null, '-21.600000', '现付', '', '', null, null, '0.000000', '0.000000', '23.760000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('80', '其它', '组装单', null, 'ZZD2017092100001', 'ZZD2017092100001', '季圣华', '2017-09-21 23:17:16', '2017-09-21 23:16:59', null, null, null, null, null, '5.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('82', '入库', '采购', null, 'CGRK201709220001', 'CGRK201709220001', '季圣华', '2017-09-22 23:06:01', '2017-09-22 23:05:39', '1', null, null, '-50.000000', null, '-52.000000', '现付', '', '', '[\"11\",\"9\"]', '[\"-20\",\"-30\"]', '10.000000', '5.720000', '51.480000', '5.000000', '[\"11\",\"10\"]', '[\"2\",\"3\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('84', '入库', '采购', null, 'CGRK201709220002', 'CGRK201709220002', '季圣华', '2017-09-22 23:22:02', '2017-09-22 23:21:48', '1', null, '10', '-26.400000', null, '-24.000000', '现付', '', '', null, null, '0.000000', '0.000000', '26.400000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('85', '入库', '采购', null, 'CGRK201709240001', 'CGRK201709240001', '季圣华', '2017-09-24 22:46:00', '2017-09-24 22:44:35', '4', null, null, '-85.000000', null, '-75.000000', '现付', '', '', '[\"10\",\"9\"]', '[\"-20\",\"-65\"]', '0.000000', '0.000000', '87.750000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('87', '出库', '销售', null, 'XSCK201709250001', 'XSCK201709250001', '季圣华', '2017-09-25 22:24:08', '2017-09-25 22:23:47', '2', null, '10', '4.000000', null, '4.000000', '现付', '', '<6>', null, null, '0.000000', '0.000000', '4.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('88', '出库', '销售', null, 'XSCK201709250002', 'XSCK201709250002', '季圣华', '2017-09-25 22:36:51', '2017-09-25 22:35:09', '2', null, '10', '39.600000', null, '40.000000', '现付', '', '<7>', null, null, '10.000000', '4.400000', '39.600000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('89', '入库', '零售退货', null, 'LSTH201709260001', 'LSTH201709260001', '季圣华', '2017-09-26 00:26:52', '2017-09-26 00:26:19', '7', null, '9', '-18.000000', null, '-18.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('90', '出库', '零售', null, 'LSCK201709260001', 'LSCK201709260001', '季圣华', '2017-09-26 22:31:24', '2017-09-26 22:29:50', '7', null, null, '100.000000', null, '100.000000', '现付', '', '', '[\"10\",\"11\"]', '[\"60\",\"40\"]', null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('93', '出库', '销售', null, 'XSCK201710080001', 'XSCK201710080001', '季圣华', '2017-10-08 19:12:23', '2017-10-08 19:11:44', '2', null, '10', '0.000000', null, '2.600000', '现付', '', '<7>', null, null, '0.000000', '0.000000', '2.600000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('94', '出库', '销售', null, 'XSCK201710080002', 'XSCK201710080002', '季圣华', '2017-10-08 19:58:55', '2017-10-08 19:58:27', '5', null, '9', '0.000000', null, '8.000000', '现付', '', '<6>', null, null, '0.000000', '0.000000', '8.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('95', '入库', '采购', null, 'CGRK201710180001', 'CGRK201710180001', '季圣华', '2017-10-18 23:21:24', '2017-10-18 23:21:12', '1', null, '11', '-2.860000', null, '-2.600000', '现付', '', '', null, null, '0.000000', '0.000000', '2.860000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('96', '出库', '销售', null, 'XSCK201710240001', 'XSCK201710240001', '季圣华', '2017-10-24 22:04:06', '2017-10-24 22:03:08', '2', null, '9', '0.000000', null, '2.800000', '现付', '', '<7>', null, null, '10.000000', '0.280000', '2.520000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('97', '入库', '采购', null, 'CGRK201710290001', 'CGRK201710290001', '季圣华', '2017-10-29 23:30:47', '2017-10-29 23:30:08', '4', null, '10', '0.000000', null, '-200.000000', '现付', '', '', null, null, '0.000000', '0.000000', '234.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('98', '入库', '采购', null, 'CGRK201710290002', 'CGRK201710290002', '季圣华', '2017-10-29 23:32:07', '2017-10-29 23:30:52', '4', null, '10', '0.000000', null, '-300.000000', '现付', '', '', null, null, '0.000000', '0.000000', '351.000000', null, null, null, null, '1', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('99', '入库', '采购', null, 'CGRK201710290003', 'CGRK201710290003', '季圣华', '2017-10-29 23:33:45', '2017-10-29 23:32:11', '4', null, '11', '-10.000000', null, '-720.000000', '现付', '', '', null, null, '0.000000', '0.000000', '842.400000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('101', '出库', '调拨', null, 'DBCK201711020001', 'DBCK201711020001', '季圣华', '2017-11-02 22:51:17', '2017-11-02 22:48:58', null, null, null, '0.000000', null, '50.000000', '现付', '', '', null, null, null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('102', '出库', '零售', null, 'LSCK201711060001', 'LSCK201711060001', '季圣华', '2017-11-06 20:38:46', '2017-11-06 20:38:01', '7', null, null, '12.000000', null, '12.000000', '现付', '', '', '[\"9\",\"12\"]', '[\"10\",\"2\"]', null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('103', '入库', '采购', null, 'CGRK201711070001', 'CGRK201711070001', '季圣华', '2017-11-07 21:07:05', '2017-11-07 21:06:53', '1', null, '10', '-26.400000', null, '-24.000000', '现付', '', '', null, '', '0.000000', '0.000000', '26.400000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('104', '入库', '采购', null, 'CGRK201711070002', 'CGRK201711070002', '季圣华', '2017-11-07 21:07:40', '2017-11-07 21:07:08', '4', null, null, '-11.000000', null, '-10.000000', '现付', '', '', '[\"9\",\"11\"]', '[\"-10\",\"-1\"]', '0.000000', '0.000000', '11.700000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('105', '出库', '销售', null, 'XSCK201711070001', 'XSCK201711070001', '季圣华', '2017-11-07 21:08:48', '2017-11-07 21:08:34', '2', null, '10', '13.000000', null, '13.000000', '现付', '', '<6>', null, '', '0.000000', '0.000000', '13.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('106', '出库', '销售', null, 'XSCK201711070002', 'XSCK201711070002', '季圣华', '2017-11-07 21:09:20', '2017-11-07 21:08:51', '2', null, null, '13.000000', null, '13.000000', '现付', '', '<5>', '[\"9\",\"10\"]', '[\"5\",\"8\"]', '0.000000', '0.000000', '13.000000', '54.000000', '[\"11\",\"10\"]', '[\"21\",\"33\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('107', '入库', '采购', null, 'CGRK201712030001', 'CGRK201712030001', '季圣华', '2017-12-03 22:38:36', '2017-12-03 22:37:26', '4', null, '9', '-1.000000', null, '-1.000000', '现付', '', '', null, '', '0.000000', '0.000000', '1.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('108', '入库', '采购', null, 'CGRK201712030002', 'sdfasdfa', '季圣华', '2017-12-03 22:40:57', '2017-12-03 22:40:38', '4', null, '4', '-42.120000', null, '-36.000000', '现付', '', '', null, '', '0.000000', '0.000000', '42.120000', null, '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('109', '入库', '采购', null, 'CGRK201712030003', 'CGRK201712030003', '季圣华', '2017-12-03 22:41:38', '2017-12-03 22:41:01', '4', null, '11', '-1.400000', null, '-1.200000', '现付', '', '', null, '', '0.000000', '0.000000', '1.400000', null, '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('110', '入库', '采购', null, 'CGRK201712050001', 'CGRK201712050001', '季圣华', '2017-12-05 23:05:48', '2017-12-05 23:05:34', '1', null, '10', '-11.000000', null, '-10.000000', '现付', '', '', null, '', '0.000000', '0.000000', '11.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('111', '入库', '采购', null, 'CGRK201712050002', 'CGRK201712050002', '季圣华', '2017-12-05 23:12:53', '2017-12-05 23:12:40', '1', null, '10', '0.000000', null, '-20.000000', '现付', '', '', null, '', '0.000000', '0.000000', '22.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('112', '出库', '销售', null, 'XSCK201712100001', 'XSCK201712100001', '季圣华', '2017-12-10 21:07:45', '2017-12-10 21:07:25', '2', null, '11', '2.600000', null, '2.600000', '现付', '', '<>', null, '', '0.000000', '0.000000', '2.600000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('114', '其它', '采购订单', null, 'CGDD00000000001', 'CGDD00000000001', '季圣华', '2019-03-09 15:49:57', '2019-03-09 15:49:50', '4', null, null, '0.000000', null, '-2.400000', '现付', '', '', null, '', null, null, null, null, null, null, null, '2', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('115', '入库', '采购', null, 'CGRK00000000002', 'CGRK00000000002', '季圣华', '2019-03-09 15:52:05', '2019-03-09 15:51:45', '4', null, '9', '-257.400000', null, '-220.000000', '现付', '', '', null, '', '0.000000', '0.000000', '257.400000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('116', '入库', '采购', null, 'CGRK00000000003', 'CGRK00000000003', '季圣华', '2019-03-09 15:52:21', '2019-03-09 15:52:09', '4', null, '9', '-1029.600000', null, '-880.000000', '现付', '', '', null, '', '0.000000', '0.000000', '1029.600000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('117', '出库', '销售', null, 'XSCK00000000004', 'XSCK00000000004', '季圣华', '2019-03-09 15:53:07', '2019-03-09 15:52:28', '5', null, '9', '110.000000', null, '110.000000', '现付', '', '<7>', null, '', '0.000000', '0.000000', '110.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('118', '出库', '销售', null, 'XSCK00000000005', 'XSCK00000000005', '季圣华', '2019-03-09 15:57:26', '2019-03-09 15:53:10', '2', null, '9', '11.000000', null, '11.000000', '现付', '', '<7>', null, '', '0.000000', '0.000000', '11.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('119', '入库', '采购', null, 'CGRK00000000009', 'CGRK00000000009', '季圣华', '2019-03-09 16:02:30', '2019-03-09 16:01:22', '1', null, '9', '-88.000000', null, '-80.000000', '现付', '', '', null, '', '0.000000', '0.000000', '88.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('120', '其它', '销售订单', null, 'XSDD00000000012', 'XSDD00000000012', '季圣华', '2019-03-09 16:27:38', '2019-03-09 22:12:14', '5', null, null, '0.000000', null, '3.900000', '现付', '', '', null, '', null, null, null, null, null, null, null, '2', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('121', '入库', '采购', null, 'CGRK00000000013', 'CGRK00000000013', '季圣华', '2019-03-09 16:35:53', '2019-03-09 16:35:32', '4', null, '9', '-42.120000', null, '-36.000000', '现付', '', '', null, '', '0.000000', '0.000000', '42.120000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('122', '入库', '采购', null, 'CGRK00000000015', 'CGRK00000000015', '季圣华', '2019-03-09 16:37:34', '2019-03-09 16:37:01', '4', null, '9', '0.000000', null, '-100.000000', '现付', '', '', null, '', '0.000000', '0.000000', '117.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('123', '出库', '销售', null, 'XSCK00000000016', 'XSCK00000000016', '季圣华', '2019-03-09 16:38:03', '2019-03-09 16:37:40', '5', null, '9', '0.000000', null, '26.000000', '现付', '', '<7>', null, '', '0.000000', '0.000000', '26.000000', null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('124', '入库', '其它', null, 'QTRK00000000074', 'QTRK00000000074', '季圣华', '2019-03-09 22:35:21', '2019-03-09 22:34:56', '4', null, null, '0.000000', null, '800.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', null, null, '0');
INSERT INTO `jsh_depothead` VALUES ('137', '入库', '采购', null, 'CGRK00000000125', 'CGRK00000000125', '季圣华', '2019-03-10 16:46:13', '2019-03-10 16:44:32', '4', null, '9', '-2.400000', null, '-2.400000', '现付', '', '', null, '', '0.000000', '0.000000', '2.400000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', 'CGDD00000000001', null, '0');
INSERT INTO `jsh_depothead` VALUES ('139', '其它', '采购订单', null, 'CGDD00000000127', 'CGDD00000000127', '季圣华', '2019-03-10 17:00:24', '2019-03-10 18:52:21', '4', null, null, '0.000000', null, '-50.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '2', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('141', '出库', '销售', null, 'XSCK00000000134', 'XSCK00000000134', '季圣华', '2019-03-10 17:40:13', '2019-03-10 17:39:41', '5', null, '9', '3.900000', null, '3.900000', '现付', '', '', null, '', '0.000000', '0.000000', '3.900000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', 'XSDD00000000012', null, '0');
INSERT INTO `jsh_depothead` VALUES ('142', '其它', '销售订单', null, 'XSDD00000000135', 'XSDD00000000135', '季圣华', '2019-03-10 17:42:11', '2019-03-10 17:44:07', '2', null, null, '0.000000', null, '7.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '2', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('144', '出库', '销售', null, 'XSCK00000000137', 'XSCK00000000137', '季圣华', '2019-03-10 17:44:49', '2019-03-10 17:44:14', '2', null, '9', '7.000000', null, '7.000000', '现付', '', '', null, '', '0.000000', '0.000000', '7.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', 'XSDD00000000135', null, '0');
INSERT INTO `jsh_depothead` VALUES ('147', '其它', '采购订单', null, 'CGDD00000000140', 'CGDD00000000140', '季圣华', '2019-03-10 17:49:51', '2019-03-10 17:49:38', '4', null, null, '0.000000', null, '-240.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '2', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('148', '入库', '采购', null, 'CGRK00000000141', 'CGRK00000000141', '季圣华', '2019-03-10 17:50:19', '2019-03-10 17:50:06', '4', null, '9', '-240.000000', null, '-240.000000', '现付', '', '', null, '', '0.000000', '0.000000', '240.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', 'CGDD00000000140', null, '0');
INSERT INTO `jsh_depothead` VALUES ('155', '入库', '采购', null, 'CGRK00000000173', 'CGRK00000000173', '季圣华', '2019-03-10 19:21:56', '2019-03-10 19:20:30', '4', null, '4', '-54.080000', null, '-46.220000', '现付', '', '', null, '', '0.000000', '0.000000', '54.080000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', 'CGDD00000000127', null, '0');
INSERT INTO `jsh_depothead` VALUES ('158', '出库', '销售', null, 'XSCK00000000177', 'XSCK00000000177', '季圣华', '2019-03-10 20:02:32', '2019-03-10 20:02:21', '5', null, '9', '10.000000', null, '10.000000', '现付', '', '', null, '', '0.000000', '0.000000', '10.000000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('159', '入库', '采购', null, 'CGRK00000000178', 'CGRK00000000178', '季圣华', '2019-03-15 23:05:40', '2019-03-15 23:05:28', '46', null, '9', '-19.500000', null, '-19.500000', '现付', '', '', null, '', '0.000000', '0.000000', '19.500000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('160', '入库', '采购', null, 'CGRK00000000179', 'CGRK00000000179', '季圣华', '2019-03-15 23:06:22', '2019-03-15 23:06:03', '46', null, '9', '-1111.000000', null, '-1111.000000', '现付', '', '', null, '', '0.000000', '0.000000', '1111.000000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('161', '出库', '销售', null, 'XSCK00000000180', 'XSCK00000000180', '季圣华', '2019-03-15 23:06:52', '2019-03-15 23:06:38', '2', null, '9', '111.000000', null, '111.000000', '现付', '', '', null, '', '0.000000', '0.000000', '111.000000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('162', '入库', '其它', null, 'QTRK00000000181', 'QTRK00000000181', '季圣华', '2019-03-15 23:08:18', '2019-03-15 23:08:11', '4', null, null, '0.000000', null, '144.300000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('163', '出库', '调拨', null, 'DBCK00000000182', 'DBCK00000000182', '季圣华', '2019-03-15 23:08:32', '2019-03-15 23:08:22', null, null, null, '0.000000', null, '111.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('164', '出库', '零售', null, 'LSCK00000000184', 'LSCK00000000184', '季圣华', '2019-03-15 23:15:30', '2019-03-15 23:15:22', '8', null, '9', '1.200000', null, '1.200000', '预付款', '', '', null, '', null, null, null, null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('165', '入库', '采购', null, 'CGRK00000000190', 'CGRK00000000190', 'lili', '2019-03-19 22:10:17', '2019-03-19 22:09:49', '47', null, '13', '-220.000000', null, '-220.000000', '现付', '', '', null, '', '0.000000', '0.000000', '220.000000', null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('166', '其它', '采购订单', null, 'CGDD00000000191', 'CGDD00000000191', 'lili', '2019-03-19 22:10:35', '2019-03-19 22:10:22', '50', null, null, '0.000000', null, '-2442.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('167', '出库', '采购退货', null, 'CGTH00000000193', 'CGTH00000000193', 'lili', '2019-03-19 22:11:39', '2019-03-19 22:11:12', '47', null, '13', '110.000000', null, '110.000000', '现付', '', '', null, '', '0.000000', '0.000000', '110.000000', null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('168', '其它', '销售订单', null, 'XSDD00000000194', 'XSDD00000000194', 'lili', '2019-03-19 22:12:04', '2019-03-19 22:11:55', '48', null, null, '0.000000', null, '22.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('169', '出库', '销售', null, 'XSCK00000000195', 'XSCK00000000195', 'lili', '2019-03-19 22:12:18', '2019-03-19 22:12:09', '48', null, '13', '22.000000', null, '22.000000', '现付', '', '', null, '', '0.000000', '0.000000', '22.000000', null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('170', '入库', '销售退货', null, 'XSTH00000000196', 'XSTH00000000196', 'lili', '2019-03-19 22:12:29', '2019-03-19 22:12:21', '48', null, '13', '-22.000000', null, '-22.000000', '现付', '', '', null, '', '0.000000', '0.000000', '22.000000', null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('171', '出库', '零售', null, 'LSCK00000000197', 'LSCK00000000197', 'lili', '2019-03-19 22:12:43', '2019-03-19 22:12:35', '49', null, '13', '22.000000', null, '22.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('172', '入库', '零售退货', null, 'LSTH00000000198', 'LSTH00000000198', 'lili', '2019-03-19 22:12:53', '2019-03-19 22:12:46', '49', null, '13', '-22.000000', null, '-22.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('173', '入库', '其它', null, 'QTRK00000000199', 'QTRK00000000199', 'lili', '2019-03-19 22:13:20', '2019-03-19 22:13:09', '50', null, null, '0.000000', null, '2200.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('174', '出库', '其它', null, 'QTCK00000000200', 'QTCK00000000200', 'lili', '2019-03-19 22:13:34', '2019-03-19 22:13:23', '48', null, null, '0.000000', null, '176.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', '1', '0');
INSERT INTO `jsh_depothead` VALUES ('175', '其它', '采购订单', null, 'CGDD00000000203', 'CGDD00000000203', '季圣华', '2019-03-19 22:48:07', '2019-03-19 22:47:55', '46', null, null, '0.000000', null, '-10.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('176', '入库', '采购', null, 'CGRK00000000204', 'CGRK00000000204', '季圣华', '2019-03-19 22:48:22', '2019-03-19 22:48:10', '4', null, '13', '-28.080000', null, '-24.000000', '现付', '', '', null, '', '0.000000', '0.000000', '28.080000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('177', '出库', '销售', null, 'XSCK00000000205', 'XSCK00000000205', '季圣华', '2019-03-19 22:48:40', '2019-03-19 22:48:26', '5', null, '13', '10.000000', null, '10.000000', '现付', '', '', null, '', '0.000000', '0.000000', '10.000000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('178', '入库', '采购', null, 'CGRK00000000213', 'CGRK00000000213', '季圣华', '2019-03-21 23:58:56', '2019-03-21 23:58:44', '4', null, '13', '-14.400000', null, '-14.400000', '现付', '', '', null, '', '0.000000', '0.000000', '14.400000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('179', '出库', '销售', null, 'XSCK00000000214', 'XSCK00000000214', '季圣华', '2019-03-21 23:59:18', '2019-03-21 23:59:05', '5', null, '10', '317.200000', null, '317.200000', '现付', '', '', null, '', '0.000000', '0.000000', '317.200000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('180', '入库', '采购', null, 'CGRK00000000242', 'CGRK00000000242', 'laoba123', '2019-04-02 22:30:01', '2019-04-02 22:29:52', '55', null, '16', '-1221.000000', null, '-1221.000000', '现付', '', '', null, '', '0.000000', '0.000000', '1221.000000', null, null, null, null, '0', '', '115', '0');
INSERT INTO `jsh_depothead` VALUES ('181', '入库', '采购', null, 'CGRK00000000243', 'CGRK00000000243', 'laoba123', '2019-04-02 22:30:20', '2019-04-02 22:30:03', '55', null, '16', '-1342.000000', null, '-1342.000000', '现付', '', '', null, '', '0.000000', '0.000000', '1342.000000', null, null, null, null, '0', '', '115', '0');
INSERT INTO `jsh_depothead` VALUES ('182', '入库', '采购', null, 'CGRK00000000245', 'CGRK00000000245', '季圣华', '2019-04-02 22:32:00', '2019-04-02 22:31:48', '46', null, '16', '-14.400000', null, '-14.400000', '现付', '', '', null, '', '0.000000', '0.000000', '14.400000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('183', '入库', '采购', null, 'CGRK00000000247', 'CGRK00000000247', '季圣华', '2019-04-04 23:06:58', '2019-04-04 23:06:41', '46', null, '16', '-159.600000', null, '-159.600000', '现付', '', '', null, '', '0.000000', '0.000000', '159.600000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('184', '入库', '采购', null, 'CGRK00000000248', 'CGRK00000000248', '季圣华', '2019-04-07 20:23:23', '2019-04-07 20:22:40', '4', null, '4', '-35.100000', null, '-30.000000', '现付', '', '', null, '', '0.000000', '0.000000', '35.100000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('185', '入库', '采购', null, 'CGRK00000000249', 'CGRK00000000249', '季圣华', '2019-04-07 20:25:30', '2019-04-07 20:25:00', '4', null, '16', '-35.100000', null, '-30.000000', '现付', '', '', null, '', '0.000000', '0.000000', '35.100000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('186', '入库', '采购', null, 'CGRK00000000250', 'CGRK00000000250', '季圣华', '2019-04-07 20:35:00', '2019-04-07 20:34:29', '4', null, '16', '-11.700000', null, '-10.000000', '现付', '', '', null, '', '0.000000', '0.000000', '11.700000', null, null, null, null, '0', '', null, '1');
INSERT INTO `jsh_depothead` VALUES ('187', '入库', '采购', null, 'CGRK00000000252', 'CGRK00000000252', '季圣华', '2019-04-07 20:44:09', '2019-04-07 20:43:49', '4', null, '4', '-421.200000', null, '-360.000000', '现付', '', '', null, '', '0.000000', '0.000000', '421.200000', null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('188', '其它', '组装单', null, 'ZZD00000000254', 'ZZD00000000254', '季圣华', '2019-04-07 20:51:51', '2019-04-07 22:39:59', null, null, null, '0.000000', null, '0.000000', '现付', '', '', null, '', null, null, null, null, null, null, null, '0', '', null, '0');
INSERT INTO `jsh_depothead` VALUES ('189', '入库', '采购', null, 'CGRK00000000261', 'CGRK00000000261', '季圣华', '2019-04-10 22:25:49', '2019-04-10 22:26:00', '57', null, '17', '-24.000000', null, '-24.000000', '现付', '', '', null, '', '0.000000', '0.000000', '24.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('190', '入库', '采购', null, 'CGRK00000000263', 'CGRK00000000263', '季圣华', '2019-04-13 19:57:43', '2019-04-13 19:57:32', '57', null, '17', '-24.000000', null, '-24.000000', '现付', '', '', null, '', '0.000000', '0.000000', '24.000000', null, null, null, null, '0', '', '63', '1');
INSERT INTO `jsh_depothead` VALUES ('191', '入库', '采购', null, 'CGRK00000000264', 'CGRK00000000264', '季圣华', '2019-04-13 19:57:58', '2019-04-13 19:57:48', '57', null, '17', '-2.000000', null, '-2.000000', '现付', '', '', null, '', '0.000000', '0.000000', '2.000000', null, null, null, null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('192', '入库', '采购', null, 'CGRK00000000265', 'CGRK00000000265', '季圣华', '2019-04-20 00:36:24', '2019-04-20 00:35:57', '57', null, '17', '-44.000000', null, '-44.000000', '现付', '', '', null, '', '0.000000', '0.000000', '44.000000', null, null, null, null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('193', '出库', '销售', null, 'XSCK00000000268', 'XSCK00000000268', '季圣华', '2019-04-29 23:41:02', '2019-04-29 23:40:49', '58', null, '17', '0.000000', null, '100.000000', '现付', '', '', null, '', '0.000000', '0.000000', '100.000000', null, null, null, null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('194', '入库', '采购', null, 'CGRK00000000272', 'CGRK00000000272', '季圣华', '2019-04-30 22:33:24', '2019-04-30 22:33:09', '57', null, '17', '-500.000000', null, '-500.000000', '现付', '', '', null, '', '0.000000', '0.000000', '500.000000', null, null, null, null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('195', '入库', '采购', null, 'CGRK00000000273', 'CGRK00000000273', '季圣华', '2019-04-30 22:34:45', '2019-04-30 22:34:32', '57', null, '17', '-610.000000', null, '-610.000000', '现付', '', '', null, '', '0.000000', '0.000000', '610.000000', null, null, null, null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('196', '入库', '采购', null, 'CGRK00000000274', 'CGRK00000000274', '季圣华', '2019-04-30 22:35:53', '2019-05-03 11:57:49', '57', null, '18', '-670.000000', null, '-670.000000', '现付', '', '', null, '', '0.000000', '0.000000', '670.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('197', '出库', '销售', null, 'XSCK00000000290', 'XSCK00000000290', '季圣华', '2019-04-30 23:15:27', '2019-04-30 23:15:09', '58', null, '17', '90.000000', null, '90.000000', '现付', '', '', null, '', '0.000000', '0.000000', '90.000000', null, null, null, null, '0', '', '63', '0');
INSERT INTO `jsh_depothead` VALUES ('198', '入库', '采购', null, 'CGRK00000000292', 'CGRK00000000292', '季圣华', '2019-05-03 14:20:56', '2019-05-03 14:19:38', '57', null, '17', '-1.120000', null, '-1.000000', '现付', '', '', null, '', '0.000000', '0.000000', '1.120000', null, null, null, null, '0', '', '63', '0');
-- ----------------------------
-- Table structure for `jsh_depotitem`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_depotitem`;
CREATE TABLE `jsh_depotitem` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`HeaderId` bigint(20) NOT NULL COMMENT '表头Id',
`MaterialId` bigint(20) NOT NULL COMMENT '材料Id',
`MUnit` varchar(20) DEFAULT NULL COMMENT '商品计量单位',
`OperNumber` decimal(24,6) DEFAULT NULL COMMENT '数量',
`BasicNumber` decimal(24,6) DEFAULT NULL COMMENT '基础数量如kg、瓶',
`UnitPrice` decimal(24,6) DEFAULT NULL COMMENT '单价',
`TaxUnitPrice` decimal(24,6) DEFAULT NULL COMMENT '含税单价',
`AllPrice` decimal(24,6) DEFAULT NULL COMMENT '金额',
`Remark` varchar(200) DEFAULT NULL COMMENT '描述',
`Img` varchar(50) DEFAULT NULL COMMENT '图片',
`Incidentals` decimal(24,6) DEFAULT NULL COMMENT '运杂费',
`DepotId` bigint(20) DEFAULT NULL COMMENT '仓库ID库存是统计出来的',
`AnotherDepotId` bigint(20) DEFAULT NULL COMMENT '调拨时对方仓库Id',
`TaxRate` decimal(24,6) DEFAULT NULL COMMENT '税率',
`TaxMoney` decimal(24,6) DEFAULT NULL COMMENT '税额',
`TaxLastMoney` decimal(24,6) DEFAULT NULL COMMENT '价税合计',
`OtherField1` varchar(50) DEFAULT NULL COMMENT '自定义字段1-品名',
`OtherField2` varchar(50) DEFAULT NULL COMMENT '自定义字段2-型号',
`OtherField3` varchar(50) DEFAULT NULL COMMENT '自定义字段3-制造商',
`OtherField4` varchar(50) DEFAULT NULL COMMENT '自定义字段4',
`OtherField5` varchar(50) DEFAULT NULL COMMENT '自定义字段5',
`MType` varchar(20) DEFAULT NULL COMMENT '商品类型',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`),
KEY `FK2A819F475D61CCF7` (`MaterialId`),
KEY `FK2A819F474BB6190E` (`HeaderId`),
KEY `FK2A819F479485B3F5` (`DepotId`),
KEY `FK2A819F47729F5392` (`AnotherDepotId`)
) ENGINE=InnoDB AUTO_INCREMENT=216 DEFAULT CHARSET=utf8 COMMENT='单据子表';
-- ----------------------------
-- Records of jsh_depotitem
-- ----------------------------
INSERT INTO `jsh_depotitem` VALUES ('7', '7', '500', '', '30.000000', '30.000000', '1.200000', '1.320000', '36.000000', 'remark', null, null, '3', null, '10.000000', '3.600000', '39.600000', 'a', 'b', 'c', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('8', '8', '500', '', '20.000000', '20.000000', '1.200000', '1.200000', '24.000000', '', null, null, '3', null, null, '0.000000', '24.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('9', '9', '500', '', '100.000000', '100.000000', '1.200000', '1.320000', '120.000000', '', null, null, '3', null, '10.000000', '12.000000', '132.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('10', '10', '500', '', '10.000000', '10.000000', '1.200000', '1.320000', '12.000000', '', null, null, '3', null, '10.000000', '1.200000', '13.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('11', '11', '500', '', '20.000000', '20.000000', '1.200000', '1.320000', '24.000000', '', null, null, '3', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('12', '12', '500', '', '10.000000', '10.000000', '1.200000', '1.320000', '12.000000', '', null, null, '3', null, '10.000000', '1.200000', '13.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('13', '13', '500', '', '20.000000', '20.000000', '1.200000', '1.320000', '24.000000', '', null, null, '3', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('14', '14', '500', '', '30.000000', '30.000000', '1.200000', '1.320000', '36.000000', '', null, null, '3', null, '10.000000', '3.600000', '39.600000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('16', '16', '500', '', '20.000000', '20.000000', '1.200000', '1.320000', '24.000000', '', null, null, '3', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('17', '17', '500', '', '30.000000', '30.000000', '1.200000', '1.320000', '36.000000', '', null, null, '3', null, '10.000000', '3.600000', '39.600000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('18', '18', '500', '', '20.000000', '20.000000', '1.200000', '1.320000', '24.000000', '', null, null, '3', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('19', '19', '500', '', '22.000000', '22.000000', '1.200000', '1.320000', '26.400000', '', null, null, '3', null, '10.000000', '2.640000', '29.040000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('20', '20', '500', '', '30.000000', '30.000000', '1.200000', '1.320000', '36.000000', '', null, null, '3', null, '10.000000', '3.600000', '39.600000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('21', '21', '500', '', '22.000000', '22.000000', '1.200000', '1.320000', '26.400000', '', null, null, '3', null, '10.000000', '2.640000', '29.040000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('22', '22', '500', '', '20.000000', '20.000000', '1.200000', '1.320000', '24.000000', '', null, null, '3', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('23', '23', '517', '', '10.000000', '120.000000', '36.000000', '36.000000', '360.000000', '', null, null, '3', null, '0.000000', '0.000000', '360.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('24', '24', '518', '', '10.000000', '250.000000', '75.000000', '75.000000', '750.000000', '', null, null, '3', null, '0.000000', '0.000000', '750.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('25', '25', '518', '', '1.000000', '25.000000', '75.000000', '75.000000', '75.000000', '', null, null, '3', null, '0.000000', '0.000000', '75.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('26', '26', '518', '', '2.000000', '50.000000', '75.000000', '90.000000', '150.000000', '', null, null, '3', null, '20.000000', '30.000000', '180.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('27', '27', '518', '', '1.000000', '25.000000', '75.000000', '82.500000', '75.000000', '', null, null, '3', null, '10.000000', '7.500000', '82.500000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('28', '28', '517', '', '2.000000', '24.000000', '36.000000', '36.000000', '72.000000', '', null, null, '3', null, '0.000000', '0.000000', '72.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('29', '29', '500', '', '100.000000', '100.000000', '1.300000', '1.370000', '130.000000', '', null, null, '3', null, '5.000000', '6.500000', '136.500000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('30', '30', '500', '', '40.000000', '40.000000', '1.200000', '1.200000', '48.000000', '', null, null, '3', null, '0.000000', '0.000000', '48.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('31', '31', '500', '', '20.000000', '20.000000', '1.300000', '1.430000', '26.000000', '', null, null, '3', null, '10.000000', '2.600000', '28.600000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('32', '32', '500', '', '10.000000', '10.000000', '1.200000', '1.320000', '12.000000', '', null, null, '3', null, '10.000000', '1.200000', '13.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('33', '33', '500', '', '50.000000', '50.000000', '1.300000', '1.430000', '65.000000', '', null, null, '3', null, '10.000000', '6.500000', '71.500000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('37', '37', '500', '', '1.000000', '1.000000', '1.300000', '1.300000', '1.300000', '', null, null, '3', '1', '0.000000', '0.000000', '1.300000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('38', '38', '500', '', '2.000000', '2.000000', '1.300000', '1.300000', '2.600000', '', null, null, '3', '1', '0.000000', '0.000000', '2.600000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('41', '41', '500', '', '20.000000', '20.000000', '2.100000', '2.310000', '42.000000', '', null, null, '3', null, '10.000000', '4.200000', '46.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('42', '42', '500', '', '10.000000', '10.000000', '1.100000', '1.100000', '11.000000', '', null, null, '3', null, '0.000000', '0.000000', '11.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('43', '43', '500', '', '11.000000', '11.000000', '1.100000', '1.100000', '12.100000', '', null, null, '3', null, '0.000000', '0.000000', '12.100000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('44', '44', '499', '', '1.000000', '1.000000', '2.200000', '2.200000', '2.200000', '', null, null, '3', null, '0.000000', '0.000000', '2.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('45', '45', '500', '', '3.000000', '3.000000', '1.100000', '1.100000', '3.300000', '', null, null, '3', null, '0.000000', '0.000000', '3.300000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('48', '48', '498', '', '10.000000', '10.000000', '1.200000', '1.200000', '12.000000', '', null, null, '3', null, '0.000000', '0.000000', '12.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('49', '49', '498', '', '10.000000', '10.000000', '1.200000', '1.200000', '12.000000', '', null, null, '3', null, '0.000000', '0.000000', '12.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('50', '50', '500', '', '20.000000', '20.000000', '1.100000', '1.100000', '22.000000', '', null, null, '3', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('52', '52', '500', '', '22.000000', '22.000000', '1.100000', '1.100000', '24.200000', '', null, null, '3', null, '0.000000', '0.000000', '24.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('53', '53', '500', '', '33.000000', '33.000000', '1.100000', '1.100000', '36.300000', '', null, null, '3', null, '0.000000', '0.000000', '36.300000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('54', '54', '500', '', '10.000000', '10.000000', '1.200000', '1.200000', '12.000000', '', null, null, '1', null, '10.000000', '0.000000', '12.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('57', '57', '500', '', '2.000000', '2.000000', '1.200000', '1.260000', '2.400000', '', null, null, '3', null, '0.000000', '0.120000', '2.520000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('63', '57', '517', '', '5.000000', '60.000000', '36.000000', '36.000000', '180.000000', '', null, null, '3', null, '0.000000', '0.000000', '180.000000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('64', '63', '500', '', '10.000000', '10.000000', '1.200000', '1.320000', '12.000000', '', null, null, '3', null, '10.000000', '1.200000', '13.200000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('66', '65', '498', '', '30.000000', '30.000000', '1.300000', '1.430000', '39.000000', '', null, null, '3', null, '10.000000', '3.900000', '42.900000', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_depotitem` VALUES ('71', '68', '498', '', '1.000000', '1.000000', '3.000000', '3.000000', '3.000000', '', null, null, '3', null, '0.000000', '0.000000', '3.000000', '', '', '', '', '', '组合件', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('72', '68', '499', '', '1.000000', '1.000000', '4.000000', '4.000000', '4.000000', '', null, null, '3', null, '0.000000', '0.000000', '4.000000', '', '', '', '', '', '普通子件', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('73', '69', '498', '', '1.000000', '1.000000', '0.000000', '0.000000', '0.000000', '', null, null, '1', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '组合件', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('74', '69', '499', '', '1.000000', '1.000000', '0.000000', '0.000000', '0.000000', '', null, null, '1', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '普通子件', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('75', '70', '487', '', '50.000000', '50.000000', '1.000000', '1.000000', '50.000000', '', null, null, '1', null, '10.000000', '0.000000', '50.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('76', '71', '499', '', '20.000000', '20.000000', '2.400000', '2.400000', '48.000000', '', null, null, '3', null, '0.000000', '0.000000', '48.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('77', '72', '499', '', '10.000000', '10.000000', '2.400000', '2.810000', '24.000000', '', null, null, '3', null, '17.000000', '4.080000', '28.080000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('78', '73', '487', '', '10.000000', '10.000000', '1.000000', '1.000000', '10.000000', '', null, null, '1', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('79', '74', '487', '', '5.000000', '5.000000', '1.000000', '1.000000', '5.000000', '', null, null, '3', null, '0.000000', '0.000000', '5.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('80', '75', '500', '', '10.000000', '10.000000', '1.300000', '1.300000', '13.000000', '', null, null, '3', null, '0.000000', '0.000000', '13.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('81', '76', '487', '', '10.000000', '10.000000', '1.000000', '1.000000', '10.000000', '', null, null, '3', '1', '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('82', '77', '499', '', '1.000000', '1.000000', '2.200000', '2.200000', '2.200000', '', null, null, '3', null, '0.000000', '0.000000', '2.200000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('83', '78', '499', '', '1.000000', '1.000000', '2.200000', '2.200000', '2.200000', '', null, null, '3', null, '0.000000', '0.000000', '2.200000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('84', '79', '499', '', '9.000000', '9.000000', '2.400000', '2.640000', '21.600000', '', null, null, '3', null, '10.000000', '2.160000', '23.760000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('85', '80', '500', '', '1.000000', '1.000000', '2.000000', '2.000000', '2.000000', '', null, null, '3', null, '0.000000', '0.000000', '2.000000', '', '', '', '', '', '组合件', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('86', '80', '498', '', '1.000000', '1.000000', '3.000000', '3.000000', '3.000000', '', null, null, '3', null, '0.000000', '0.000000', '3.000000', '', '', '', '', '', '普通子件', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('88', '82', '498', '', '40.000000', '40.000000', '1.300000', '1.430000', '52.000000', '', null, null, '3', null, '10.000000', '5.200000', '57.200000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('90', '84', '499', '', '10.000000', '10.000000', '2.400000', '2.640000', '24.000000', '', null, null, '1', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('91', '85', '518', '', '1.000000', '25.000000', '75.000000', '87.750000', '75.000000', '', null, null, '3', null, '17.000000', '12.750000', '87.750000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('93', '87', '518', 'kg', '1.000000', '1.000000', '4.000000', '4.000000', '4.000000', '', null, null, '3', null, '0.000000', '0.000000', '4.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('94', '88', '517', '', '10.000000', '10.000000', '4.000000', '4.400000', '40.000000', '', null, null, '3', null, '10.000000', '4.000000', '44.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('95', '89', '517', '', '1.000000', '12.000000', '18.000000', '18.000000', '18.000000', '', null, null, '3', null, '0.000000', '0.000000', '18.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('96', '90', '518', '', '2.000000', '50.000000', '50.000000', '50.000000', '100.000000', '', null, null, '3', null, '0.000000', '0.000000', '100.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('101', '94', '517', '', '2.000000', '2.000000', '4.000000', '4.000000', '8.000000', '', null, null, '3', null, '0.000000', '0.000000', '8.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('102', '95', '498', '', '2.000000', '2.000000', '1.300000', '1.430000', '2.600000', '', null, null, '3', null, '10.000000', '0.260000', '2.860000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('103', '96', '498', '', '2.000000', '2.000000', '1.400000', '1.400000', '2.800000', '', null, null, '3', null, '0.000000', '0.000000', '2.800000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('104', '97', '485', '', '200.000000', '200.000000', '1.000000', '1.170000', '200.000000', '', null, null, '3', null, '17.000000', '34.000000', '234.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('105', '98', '487', '', '300.000000', '300.000000', '1.000000', '1.170000', '300.000000', '', null, null, '3', null, '17.000000', '51.000000', '351.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('106', '99', '517', '', '20.000000', '240.000000', '36.000000', '42.120000', '720.000000', '', null, null, '3', null, '17.000000', '122.400000', '842.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('107', '100', '487', '', '1.000000', '1.000000', '1.000000', '1.000000', '1.000000', '', null, null, '4', null, '0.000000', '0.000000', '1.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('108', '101', '485', '', '50.000000', '50.000000', '1.000000', '1.000000', '50.000000', '', null, null, '3', '1', '0.000000', '0.000000', '50.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('109', '102', '498', '', '10.000000', '10.000000', '1.200000', '1.200000', '12.000000', '', null, null, '3', null, '0.000000', '0.000000', '12.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('110', '103', '499', '', '10.000000', '10.000000', '2.400000', '2.640000', '24.000000', '', null, null, '3', null, '10.000000', '2.400000', '26.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('111', '104', '487', '', '10.000000', '10.000000', '1.000000', '1.170000', '10.000000', '', null, null, '3', null, '17.000000', '1.700000', '11.700000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('112', '105', '499', '', '5.000000', '5.000000', '2.600000', '2.600000', '13.000000', '', null, null, '3', null, '0.000000', '0.000000', '13.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('113', '106', '499', '', '5.000000', '5.000000', '2.600000', '2.600000', '13.000000', '', null, null, '3', null, '0.000000', '0.000000', '13.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('114', '107', '487', '', '1.000000', '1.000000', '1.000000', '1.000000', '1.000000', '', null, null, '1', null, '0.000000', '0.000000', '1.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('116', '108', '517', '', '1.000000', '12.000000', '36.000000', '42.120000', '36.000000', '', null, null, '3', null, '17.000000', '6.120000', '42.120000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('117', '109', '500', '', '1.000000', '1.000000', '1.200000', '1.400000', '1.200000', '', null, null, '3', null, '17.000000', '0.200000', '1.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('118', '110', '487', '', '10.000000', '10.000000', '1.000000', '1.100000', '10.000000', '', null, null, '3', null, '10.000000', '1.000000', '11.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('119', '111', '487', '', '20.000000', '20.000000', '1.000000', '1.100000', '20.000000', '', null, null, '1', null, '10.000000', '2.000000', '22.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('120', '112', '499', '', '1.000000', '1.000000', '2.600000', '2.600000', '2.600000', '', null, null, '3', null, '0.000000', '0.000000', '2.600000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('123', '114', '499', '', '1.000000', '1.000000', '2.400000', '2.400000', '2.400000', '', null, null, '3', null, '0.000000', '0.000000', '2.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('124', '115', '563', '', '20.000000', '20.000000', '11.000000', '12.870000', '220.000000', '', null, null, '1', null, '17.000000', '37.400000', '257.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('125', '116', '563', '', '80.000000', '80.000000', '11.000000', '12.870000', '880.000000', '', null, null, '3', null, '17.000000', '149.600000', '1029.600000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('126', '117', '563', '', '10.000000', '10.000000', '11.000000', '11.000000', '110.000000', '', null, null, '3', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('127', '118', '563', '', '1.000000', '1.000000', '11.000000', '11.000000', '11.000000', '', null, null, '1', null, '0.000000', '0.000000', '11.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('128', '119', '562', '', '10.000000', '10.000000', '8.000000', '8.800000', '80.000000', '', null, null, '3', null, '10.000000', '8.000000', '88.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('129', '120', '500', '', '3.000000', '3.000000', '1.300000', '1.300000', '3.900000', '', null, null, '3', null, '0.000000', '0.000000', '3.900000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('130', '121', '517', '', '1.000000', '12.000000', '36.000000', '42.120000', '36.000000', '', null, null, '3', null, '17.000000', '6.120000', '42.120000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('131', '122', '487', '', '100.000000', '100.000000', '1.000000', '1.170000', '100.000000', '', null, null, '3', null, '17.000000', '17.000000', '117.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('132', '123', '499', '', '10.000000', '10.000000', '2.600000', '2.600000', '26.000000', '', null, null, '3', null, '0.000000', '0.000000', '26.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('133', '124', '562', '', '100.000000', '100.000000', '8.000000', '9.360000', '800.000000', '', null, null, '1', null, '17.000000', '136.000000', '936.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('144', '137', '499', '', '1.000000', '1.000000', '2.400000', '2.400000', '2.400000', '', null, null, '3', null, '0.000000', '0.000000', '2.400000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('146', '139', '499', '', '10.000000', '10.000000', '2.400000', '2.810000', '24.000000', '', null, null, '3', null, '17.000000', '4.080000', '28.080000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('148', '141', '500', '', '3.000000', '3.000000', '1.300000', '1.300000', '3.900000', '', null, null, '3', null, '0.000000', '0.000000', '3.900000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('149', '142', '498', '', '5.000000', '5.000000', '1.400000', '1.400000', '7.000000', '', null, null, '3', null, '0.000000', '0.000000', '7.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('151', '144', '498', '', '5.000000', '5.000000', '1.400000', '1.400000', '7.000000', '', null, null, '3', null, '0.000000', '0.000000', '7.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('154', '147', '499', '', '100.000000', '100.000000', '2.400000', '2.400000', '240.000000', '', null, null, '3', null, '0.000000', '0.000000', '240.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('155', '148', '499', '', '100.000000', '100.000000', '2.400000', '2.400000', '240.000000', '', null, null, '3', null, '0.000000', '0.000000', '240.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('158', '139', '498', '', '20.000000', '20.000000', '1.110000', '1.300000', '22.220000', '', null, null, '3', null, '17.000000', '3.780000', '26.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('161', '155', '499', '', '10.000000', '10.000000', '2.400000', '2.810000', '24.000000', '', null, null, '3', null, '17.000000', '4.080000', '28.080000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('162', '155', '498', '', '20.000000', '20.000000', '1.110000', '1.300000', '22.220000', '', null, null, '3', null, '17.000000', '3.780000', '26.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('165', '158', '487', '', '10.000000', '10.000000', '1.000000', '1.000000', '10.000000', '', null, null, '3', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('166', '159', '498', '', '15.000000', '15.000000', '1.300000', '1.300000', '19.500000', '', null, null, '3', null, '0.000000', '0.000000', '19.500000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('167', '160', '487', '', '1111.000000', '1111.000000', '1.000000', '1.000000', '1111.000000', '', null, null, '1', null, '0.000000', '0.000000', '1111.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('168', '161', '487', '', '111.000000', '111.000000', '1.000000', '1.000000', '111.000000', '', null, null, '1', null, '0.000000', '0.000000', '111.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('169', '162', '498', '', '111.000000', '111.000000', '1.300000', '1.520000', '144.300000', '', null, null, '3', null, '17.000000', '24.530000', '168.830000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('170', '163', '487', '', '111.000000', '111.000000', '1.000000', '1.000000', '111.000000', '', null, null, '1', '3', '0.000000', '0.000000', '111.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('171', '164', '498', '', '1.000000', '1.000000', '1.200000', '1.200000', '1.200000', '', null, null, '3', null, '0.000000', '0.000000', '1.200000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('172', '165', '564', '', '10.000000', '10.000000', '22.000000', '22.000000', '220.000000', '', null, null, '7', null, '0.000000', '0.000000', '220.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('173', '166', '564', '', '111.000000', '111.000000', '22.000000', '22.000000', '2442.000000', '', null, null, '7', null, '0.000000', '0.000000', '2442.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('174', '167', '564', '', '5.000000', '5.000000', '22.000000', '22.000000', '110.000000', '', null, null, '7', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('175', '168', '564', '', '1.000000', '1.000000', '22.000000', '22.000000', '22.000000', '', null, null, '7', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('176', '169', '564', '', '1.000000', '1.000000', '22.000000', '22.000000', '22.000000', '', null, null, '7', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('177', '170', '564', '', '1.000000', '1.000000', '22.000000', '22.000000', '22.000000', '', null, null, '7', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('178', '171', '564', '', '1.000000', '1.000000', '22.000000', '22.000000', '22.000000', '', null, null, '7', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('179', '172', '564', '', '1.000000', '1.000000', '22.000000', '22.000000', '22.000000', '', null, null, '7', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('180', '173', '564', '', '100.000000', '100.000000', '22.000000', '22.000000', '2200.000000', '', null, null, '7', null, '0.000000', '0.000000', '2200.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('181', '174', '564', '', '8.000000', '8.000000', '22.000000', '22.000000', '176.000000', '', null, null, '7', null, '0.000000', '0.000000', '176.000000', '', '', '', '', '', '', '1', '0');
INSERT INTO `jsh_depotitem` VALUES ('182', '175', '487', '', '10.000000', '10.000000', '1.000000', '1.000000', '10.000000', '', null, null, '1', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('183', '176', '499', '', '10.000000', '10.000000', '2.400000', '2.810000', '24.000000', '', null, null, '1', null, '17.000000', '4.080000', '28.080000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('184', '177', '487', '', '10.000000', '10.000000', '1.000000', '1.000000', '10.000000', '', null, null, '1', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('185', '178', '500', '', '12.000000', '12.000000', '1.200000', '1.200000', '14.400000', '', null, null, '3', null, '0.000000', '0.000000', '14.400000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('186', '179', '499', '', '122.000000', '122.000000', '2.600000', '2.600000', '317.200000', '', null, null, '3', null, '0.000000', '0.000000', '317.200000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('187', '180', '567', '', '111.000000', null, '11.000000', '11.000000', '1221.000000', '', null, null, '13', null, '0.000000', '0.000000', '1221.000000', '', '', '', '', '', '', '115', '0');
INSERT INTO `jsh_depotitem` VALUES ('188', '181', '567', '', '122.000000', null, '11.000000', '11.000000', '1342.000000', '', null, null, '13', null, '0.000000', '0.000000', '1342.000000', '', '', '', '', '', '', '115', '0');
INSERT INTO `jsh_depotitem` VALUES ('189', '182', '500', '', '12.000000', null, '1.200000', '1.200000', '14.400000', '', null, null, '1', null, '0.000000', '0.000000', '14.400000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('190', '183', '500', '', '133.000000', null, '1.200000', '1.200000', '159.600000', '', null, null, '1', null, '0.000000', '0.000000', '159.600000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('191', '184', '517', '', '10.000000', null, '3.000000', '3.510000', '30.000000', '', null, null, '3', null, '17.000000', '5.100000', '35.100000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('192', '185', '517', '', '10.000000', null, '3.000000', '3.510000', '30.000000', '', null, null, '3', null, '17.000000', '5.100000', '35.100000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('193', '186', '487', '', '10.000000', null, '1.000000', '1.170000', '10.000000', '', null, null, '3', null, '17.000000', '1.700000', '11.700000', '', '', '', '', '', '', null, '1');
INSERT INTO `jsh_depotitem` VALUES ('194', '187', '517', '', '10.000000', '120.000000', '36.000000', '42.120000', '360.000000', '', null, null, '3', null, '17.000000', '61.200000', '421.200000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('195', '188', '485', '', '8.000000', '8.000000', '0.000000', '0.000000', '0.000000', '', null, null, '3', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('196', '188', '487', '', '8.000000', '8.000000', '0.000000', '0.000000', '0.000000', '', null, null, '3', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('197', '188', '498', '', '8.000000', '8.000000', '0.000000', '0.000000', '0.000000', '', null, null, '3', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', null, '0');
INSERT INTO `jsh_depotitem` VALUES ('198', '189', '569', '', '12.000000', '12.000000', '2.000000', '2.000000', '24.000000', '', null, null, '14', null, '0.000000', '0.000000', '24.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('199', '190', '569', '', '12.000000', '12.000000', '2.000000', '2.000000', '24.000000', '', null, null, '14', null, '0.000000', '0.000000', '24.000000', '', '', '', '', '', '', '63', '1');
INSERT INTO `jsh_depotitem` VALUES ('200', '191', '569', '', '1.000000', '1.000000', '2.000000', '2.000000', '2.000000', '', null, null, '14', null, '0.000000', '0.000000', '2.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('201', '192', '569', '', '22.000000', '22.000000', '2.000000', '2.000000', '44.000000', '', null, null, '14', null, '0.000000', '0.000000', '44.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('202', '193', '569', '', '20.000000', '20.000000', '5.000000', '5.000000', '100.000000', '', null, null, '14', null, '0.000000', '0.000000', '100.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('203', '194', '569', '', '100.000000', '100.000000', '5.000000', '5.000000', '500.000000', '', null, null, '15', null, '0.000000', '0.000000', '500.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('204', '195', '569', '', '122.000000', '122.000000', '5.000000', '5.000000', '610.000000', '', null, null, '15', null, '0.000000', '0.000000', '610.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('205', '196', '569', '', '122.000000', '122.000000', '5.000000', '5.000000', '610.000000', '', null, null, '15', null, '0.000000', '0.000000', '610.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('206', '197', '569', '', '18.000000', '18.000000', '5.000000', '5.000000', '90.000000', '', null, null, '14', null, '0.000000', '0.000000', '90.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('207', '196', '569', '', '2.000000', '2.000000', '5.000000', '5.000000', '10.000000', '', null, null, '15', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('208', '196', '569', '', '2.000000', '2.000000', '5.000000', '5.000000', '10.000000', '', null, null, '15', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('209', '196', '568', '', '2.000000', '2.000000', '0.000000', '0.000000', '0.000000', '', null, null, '14', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('210', '196', '568', '', '2.000000', '2.000000', '0.000000', '0.000000', '0.000000', '', null, null, '14', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('211', '196', '568', '', '3.000000', '3.000000', '0.000000', '0.000000', '0.000000', '', null, null, '14', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('212', '196', '568', '', '4.000000', '4.000000', '0.000000', '0.000000', '0.000000', '', null, null, '14', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('213', '196', '568', '', '5.000000', '5.000000', '2.000000', '2.000000', '10.000000', '', null, null, '14', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('214', '196', '569', '', '6.000000', '6.000000', '5.000000', '5.000000', '30.000000', '', null, null, '14', null, '0.000000', '0.000000', '30.000000', '', '', '', '', '', '', '63', '0');
INSERT INTO `jsh_depotitem` VALUES ('215', '198', '578', '', '1.000000', '12.000000', '1.000000', '1.120000', '1.000000', '', null, null, '14', null, '12.000000', '0.120000', '1.120000', '', '', '', '', '', '', '63', '0');
-- ----------------------------
-- Table structure for `jsh_functions`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_functions`;
CREATE TABLE `jsh_functions` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`Number` varchar(50) DEFAULT NULL COMMENT '',
`Name` varchar(50) DEFAULT NULL COMMENT '',
`PNumber` varchar(50) DEFAULT NULL COMMENT '',
`URL` varchar(100) DEFAULT NULL COMMENT '',
`State` bit(1) DEFAULT NULL COMMENT '',
`Sort` varchar(50) DEFAULT NULL COMMENT '',
`Enabled` bit(1) DEFAULT NULL COMMENT '',
`Type` varchar(50) DEFAULT NULL COMMENT '',
`PushBtn` varchar(50) DEFAULT NULL COMMENT '',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=246 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_functions
-- ----------------------------
INSERT INTO `jsh_functions` VALUES ('1', '00', '', '0', '', '', '0010', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('2', '01', '', '0', '', '', '0020', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('11', '0001', '', '00', '', '', '0110', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('12', '000101', '', '0001', '../manage/app.html', '', '0132', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('13', '000102', '', '0001', '../manage/role.html', '', '0130', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('14', '000103', '', '0001', '../manage/user.html', '', '0140', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('15', '000104', '', '0001', '../manage/log.html', '', '0160', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('16', '000105', '', '0001', '../manage/functions.html', '', '0135', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('21', '0101', '', '01', '', '', '0220', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('22', '010101', '', '0101', '../materials/materialcategory.html', '', '0230', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('23', '010102', '', '0101', '../materials/material.html', '', '0240', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('24', '0102', '', '01', '', '', '0250', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('25', '01020101', '', '0102', '../manage/vendor.html', '', '0260', '', '', '1,2', '0');
INSERT INTO `jsh_functions` VALUES ('26', '010202', '', '0102', '../manage/depot.html', '', '0270', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('31', '010206', '', '0102', '../materials/person.html', '', '0284', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('32', '0502', '', '05', '', '', '0330', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('33', '050201', '', '0502', '../materials/purchase_in_list.html', '', '0340', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('38', '0603', '', '06', '', '', '0390', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('40', '080107', '', '0801', '../materials/allocation_out_list.html', '', '0807', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('41', '060303', '', '0603', '../materials/sale_out_list.html', '', '0394', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('44', '0704', '', '07', '', '', '0450', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('59', '030101', '', '0301', '../reports/in_out_stock_report.html', '', '0600', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('194', '010204', '', '0102', '../manage/inOutItem.html', '', '0282', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('195', '010205', '', '0102', '../manage/account.html', '', '0283', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('196', '03', '', '0', '', '', '0025', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('197', '070402', '', '0704', '../financial/item_in.html', '', '0465', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('198', '0301', '', '03', '', '', '0570', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('199', '050204', '退', '0502', '../materials/purchase_back_list.html', '', '0345', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('200', '060305', '退', '0603', '../materials/sale_back_list.html', '', '0396', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('201', '080103', '', '0801', '../materials/other_in_list.html', '', '0803', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('202', '080105', '', '0801', '../materials/other_out_list.html', '', '0805', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('203', '070403', '', '0704', '../financial/item_out.html', '', '0470', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('204', '070404', '', '0704', '../financial/money_in.html', '', '0475', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('205', '070405', '', '0704', '../financial/money_out.html', '', '0480', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('206', '070406', '', '0704', '../financial/giro.html', '', '0490', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('207', '030102', '', '0301', '../reports/account_report.html', '', '0610', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('208', '030103', '', '0301', '../reports/buy_in_report.html', '', '0620', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('209', '030104', '', '0301', '../reports/sale_out_report.html', '', '0630', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('210', '040102', '', '0401', '../materials/retail_out_list.html', '', '0405', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('211', '040104', '退', '0401', '../materials/retail_back_list.html', '', '0407', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('212', '070407', '', '0704', '../financial/advance_in.html', '', '0495', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('217', '01020102', '', '0102', '../manage/customer.html', '', '0262', '', '', '1,2', '0');
INSERT INTO `jsh_functions` VALUES ('218', '01020103', '', '0102', '../manage/member.html', '', '0263', '', '', '1,2', '0');
INSERT INTO `jsh_functions` VALUES ('219', '000107', '', '0001', '../asset/asset.html', '', '0170', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('220', '010103', '', '0101', '../manage/unit.html', '', '0245', '', '', null, '0');
INSERT INTO `jsh_functions` VALUES ('221', '04', '', '0', '', '', '0028', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('222', '05', '', '0', '', '', '0030', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('223', '06', '', '0', '', '', '0035', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('224', '07', '', '0', '', '', '0040', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('225', '0401', '', '04', '', '', '0401', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('226', '030106', '', '0301', '../reports/in_detail.html', '', '0640', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('227', '030107', '', '0301', '../reports/out_detail.html', '', '0645', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('228', '030108', '', '0301', '../reports/in_material_count.html', '', '0650', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('229', '030109', '', '0301', '../reports/out_material_count.html', '', '0655', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('232', '080109', '', '0801', '../materials/assemble_list.html', '', '0809', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('233', '080111', '', '0801', '../materials/disassemble_list.html', '', '0811', '', '', '3,4,5', '0');
INSERT INTO `jsh_functions` VALUES ('234', '000105', '', '0001', '../manage/systemConfig.html', '', '0165', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('235', '030110', '', '0301', '../reports/customer_account.html', '', '0660', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('236', '000106', '', '0001', '../materials/materialProperty.html', '', '0168', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('237', '030111', '', '0301', '../reports/vendor_account.html', '', '0665', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('238', '08', '', '0', '', '', '0038', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('239', '0801', '', '08', '', '', '0801', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('240', '010104', '', '0101', '../manage/serialNumber.html', '', '0246', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('241', '050202', '', '0502', '../materials/purchase_orders_list.html', '', '0335', '', '', '3', '0');
INSERT INTO `jsh_functions` VALUES ('242', '060301', '', '0603', '../materials/sale_orders_list.html', '', '0392', '', '', '3', '0');
INSERT INTO `jsh_functions` VALUES ('243', '000108', '', '0001', '../manage/organization.html', '', '0139', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('244', '030112', '', '0301', '../reports/stock_warning_report.html', '', '0670', '', '', '', '0');
INSERT INTO `jsh_functions` VALUES ('245', '02', '', '0', '', '', '0005', '', '', '', '0');
-- ----------------------------
-- Table structure for `jsh_inoutitem`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_inoutitem`;
CREATE TABLE `jsh_inoutitem` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`Name` varchar(50) DEFAULT NULL COMMENT '',
`Type` varchar(20) DEFAULT NULL COMMENT '',
`Remark` varchar(100) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_inoutitem
-- ----------------------------
INSERT INTO `jsh_inoutitem` VALUES ('1', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('5', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('7', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('8', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('9', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('10', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('11', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('12', '-', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('13', '-', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('14', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('15', '', '', '', null, '0');
INSERT INTO `jsh_inoutitem` VALUES ('16', '1', '', '', '1', '0');
INSERT INTO `jsh_inoutitem` VALUES ('17', '1', '', '', '1', '0');
INSERT INTO `jsh_inoutitem` VALUES ('18', '1', '', '', '117', '0');
INSERT INTO `jsh_inoutitem` VALUES ('19', '1', '', '', '117', '0');
INSERT INTO `jsh_inoutitem` VALUES ('20', '2', '', '', '117', '0');
-- ----------------------------
-- Table structure for `jsh_log`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_log`;
CREATE TABLE `jsh_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`userID` bigint(20) NOT NULL COMMENT 'ID',
`operation` varchar(500) DEFAULT NULL COMMENT '',
`clientIP` varchar(50) DEFAULT NULL COMMENT 'IP',
`createtime` datetime DEFAULT NULL COMMENT '',
`status` tinyint(4) DEFAULT NULL COMMENT ' 0==1==',
`contentdetails` varchar(1000) DEFAULT NULL COMMENT '',
`remark` varchar(500) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
PRIMARY KEY (`id`),
KEY `FKF2696AA13E226853` (`userID`)
) ENGINE=InnoDB AUTO_INCREMENT=6348 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_log
-- ----------------------------
INSERT INTO `jsh_log` VALUES ('1722', '63', '', '192.168.1.104', '2016-11-27 13:17:17', '0', 'jsh ', 'jsh ', null);
INSERT INTO `jsh_log` VALUES ('1723', '63', '', '192.168.1.104', '2016-11-27 13:17:30', '0', 'jsh ', 'jsh ', null);
INSERT INTO `jsh_log` VALUES ('1724', '63', '退', '192.168.1.104', '2016-11-27 13:17:48', '0', 'jsh 退', 'jsh 退', null);
INSERT INTO `jsh_log` VALUES ('1725', '65', '', '192.168.1.104', '2016-11-27 13:17:52', '0', 'ls ', 'ls ', null);
INSERT INTO `jsh_log` VALUES ('1726', '65', '退', '192.168.1.104', '2016-11-27 13:18:18', '0', 'ls 退', 'ls 退', null);
INSERT INTO `jsh_log` VALUES ('1727', '63', '', '192.168.1.104', '2016-11-27 13:18:22', '0', 'jsh ', 'jsh ', null);
INSERT INTO `jsh_log` VALUES ('1728', '63', 'UserBusiness', '192.168.1.104', '2016-11-27 13:18:44', '0', 'UserBusiness的ID为 6 ', 'UserBusiness成功', null);
INSERT INTO `jsh_log` VALUES ('1729', '63', '退', '192.168.1.104', '2016-11-27 13:18:48', '0', 'jsh 退', 'jsh 退', null);
INSERT INTO `jsh_log` VALUES ('1730', '65', '', '192.168.1.104', '2016-11-27 13:18:53', '0', 'ls ', 'ls ', null);
INSERT INTO `jsh_log` VALUES ('1731', '63', '', '192.168.1.104', '2016-12-04 10:38:50', '0', 'jsh ', 'jsh ', null);
INSERT INTO `jsh_log` VALUES ('1732', '63', '', '192.168.1.104', '2016-12-04 10:40:52', '0', ' 11 ', '', null);
INSERT INTO `jsh_log` VALUES ('1733', '63', '', '192.168.1.104', '2016-12-04 10:59:57', '0', 'ID为 499 ', '', null);
INSERT INTO `jsh_log` VALUES ('1734', '63', '', '192.168.1.104', '2016-12-04 11:00:13', '0', 'ID为 499 ', '', null);
INSERT INTO `jsh_log` VALUES ('1735', '63', '', '192.168.1.104', '2016-12-04 11:00:38', '0', 'ID为 499 ', '', null);
INSERT INTO `jsh_log` VALUES ('1736', '63', '', '192.168.1.104', '2016-12-04 11:02:35', '0', ' 11 ', '', null);
INSERT INTO `jsh_log` VALUES ('1737', '63', '', '192.168.1.104', '2016-12-04 11:02:41', '0', 'ID为 500 ', '', null);
INSERT INTO `jsh_log` VALUES ('1738', '63', '', '192.168.1.104', '2016-12-04 11:04:43', '0', 'ID为 26 ', '', null);
INSERT INTO `jsh_log` VALUES ('1739', '63', '', '192.168.1.104', '2016-12-04 11:38:13', '0', ' aa ', '', null);
INSERT INTO `jsh_log` VALUES ('1740', '63', '', '192.168.1.104', '2016-12-04 11:48:36', '0', ' aaaa ', '', null);
INSERT INTO `jsh_log` VALUES ('1741', '63', '', '192.168.1.104', '2016-12-04 11:48:53', '0', 'ID为 3, aa成功', '', null);
INSERT INTO `jsh_log` VALUES ('1742', '63', '', '192.168.1.104', '2016-12-04 11:48:59', '0', 'ID为 4 ', '', null);
INSERT INTO `jsh_log` VALUES ('5852', '63', '', '127.0.0.1', '2019-03-09 15:49:57', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5853', '63', '', '127.0.0.1', '2019-03-09 15:50:31', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5854', '63', '', '127.0.0.1', '2019-03-09 15:50:49', '0', ',id:563', ',id:563', null);
INSERT INTO `jsh_log` VALUES ('5855', '63', '', '127.0.0.1', '2019-03-09 15:52:06', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5856', '63', '', '127.0.0.1', '2019-03-09 15:52:21', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5857', '63', '', '127.0.0.1', '2019-03-09 15:53:07', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5858', '63', '', '127.0.0.1', '2019-03-09 15:57:26', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5859', '63', '', '127.0.0.1', '2019-03-09 16:00:18', '0', ',id:562', ',id:562', null);
INSERT INTO `jsh_log` VALUES ('5860', '63', '', '127.0.0.1', '2019-03-09 16:01:17', '0', ',id:562', ',id:562', null);
INSERT INTO `jsh_log` VALUES ('5861', '63', '', '127.0.0.1', '2019-03-09 16:02:30', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5862', '63', '', '127.0.0.1', '2019-03-09 16:10:29', '0', ',id:241', ',id:241', null);
INSERT INTO `jsh_log` VALUES ('5863', '63', '', '127.0.0.1', '2019-03-09 16:27:38', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5864', '63', '', '127.0.0.1', '2019-03-09 16:35:53', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5865', '63', '', '127.0.0.1', '2019-03-09 16:37:34', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5866', '63', '', '127.0.0.1', '2019-03-09 16:38:03', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5867', '63', '', '127.0.0.1', '2019-03-09 16:54:36', '0', ',id:563', ',id:563', null);
INSERT INTO `jsh_log` VALUES ('5868', '63', '', '127.0.0.1', '2019-03-09 22:35:21', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5869', '63', '', '127.0.0.1', '2019-03-09 23:13:40', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5870', '63', '', '127.0.0.1', '2019-03-09 23:19:15', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5871', '63', '', '127.0.0.1', '2019-03-09 23:27:52', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5872', '63', '', '127.0.0.1', '2019-03-09 23:28:43', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5873', '63', '', '127.0.0.1', '2019-03-09 23:32:57', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5874', '63', '', '127.0.0.1', '2019-03-09 23:35:07', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5875', '63', '', '127.0.0.1', '2019-03-09 23:38:10', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5876', '63', '', '127.0.0.1', '2019-03-09 23:39:46', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5877', '63', '', '127.0.0.1', '2019-03-10 15:48:42', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5878', '63', '', '127.0.0.1', '2019-03-10 15:54:30', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5879', '63', '', '127.0.0.1', '2019-03-10 15:56:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5880', '63', '', '127.0.0.1', '2019-03-10 16:05:10', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5881', '63', '', '127.0.0.1', '2019-03-10 16:46:13', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5882', '63', '', '127.0.0.1', '2019-03-10 16:47:04', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5883', '63', '', '127.0.0.1', '2019-03-10 17:00:25', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5884', '63', '', '127.0.0.1', '2019-03-10 17:40:13', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5885', '63', '', '127.0.0.1', '2019-03-10 17:42:11', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5886', '63', '', '127.0.0.1', '2019-03-10 17:44:49', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5887', '63', '', '127.0.0.1', '2019-03-10 17:47:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5888', '63', '', '127.0.0.1', '2019-03-10 17:48:28', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5889', '63', '', '127.0.0.1', '2019-03-10 17:49:51', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5890', '63', '', '127.0.0.1', '2019-03-10 17:50:19', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5891', '63', '', '127.0.0.1', '2019-03-10 18:13:00', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5892', '63', '', '127.0.0.1', '2019-03-10 18:16:25', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5893', '63', '', '127.0.0.1', '2019-03-10 18:24:54', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5894', '63', '', '127.0.0.1', '2019-03-10 18:30:56', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5895', '63', '', '127.0.0.1', '2019-03-10 18:43:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5896', '63', '', '127.0.0.1', '2019-03-10 19:19:45', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5897', '63', '', '127.0.0.1', '2019-03-10 19:21:56', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5898', '63', '', '127.0.0.1', '2019-03-10 20:00:11', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5899', '63', '', '127.0.0.1', '2019-03-10 20:02:01', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5900', '63', '', '127.0.0.1', '2019-03-10 20:02:33', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5901', '63', '', '127.0.0.1', '2019-03-15 23:02:54', '0', ',id:2', ',id:2', null);
INSERT INTO `jsh_log` VALUES ('5902', '63', '', '127.0.0.1', '2019-03-15 23:03:55', '0', ',id:2', ',id:2', null);
INSERT INTO `jsh_log` VALUES ('5903', '63', '', '127.0.0.1', '2019-03-15 23:04:10', '0', ',id:1', ',id:1', null);
INSERT INTO `jsh_log` VALUES ('5904', '63', '', '127.0.0.1', '2019-03-15 23:04:15', '0', ',id:3', ',id:3', null);
INSERT INTO `jsh_log` VALUES ('5905', '63', '', '127.0.0.1', '2019-03-15 23:05:40', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5906', '63', '', '127.0.0.1', '2019-03-15 23:06:22', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5907', '63', '', '127.0.0.1', '2019-03-15 23:06:52', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5908', '63', '', '127.0.0.1', '2019-03-15 23:08:18', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5909', '63', '', '127.0.0.1', '2019-03-15 23:08:33', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5910', '63', '', '127.0.0.1', '2019-03-15 23:12:39', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5911', '63', '', '127.0.0.1', '2019-03-15 23:15:30', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5912', '63', '', '0:0:0:0:0:0:0:1', '2019-03-17 21:37:05', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5913', '63', '', '0:0:0:0:0:0:0:1', '2019-03-17 23:26:30', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5914', '63', '', '127.0.0.1', '2019-03-18 22:38:21', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5915', '63', '', '127.0.0.1', '2019-03-18 22:38:33', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5916', '63', '', '127.0.0.1', '2019-03-18 22:38:39', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5917', '63', '', '127.0.0.1', '2019-03-18 22:38:58', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5918', '63', '', '127.0.0.1', '2019-03-18 22:45:08', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5919', '63', '', '127.0.0.1', '2019-03-18 23:07:31', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5920', '63', '', '127.0.0.1', '2019-03-18 23:38:47', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5921', '63', '', '127.0.0.1', '2019-03-18 23:39:09', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5922', '63', '', '127.0.0.1', '2019-03-18 23:49:08', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5923', '63', '', '127.0.0.1', '2019-03-18 23:49:31', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5924', '63', '', '127.0.0.1', '2019-03-19 21:57:45', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5925', '63', '', '127.0.0.1', '2019-03-19 22:00:49', '0', ',id:3', ',id:3', '1');
INSERT INTO `jsh_log` VALUES ('5926', '63', '', '127.0.0.1', '2019-03-19 22:01:14', '0', ',id:7', ',id:7', '1');
INSERT INTO `jsh_log` VALUES ('5927', '63', '', '127.0.0.1', '2019-03-19 22:01:21', '0', ',id:7', ',id:7', '1');
INSERT INTO `jsh_log` VALUES ('5928', '63', '', '127.0.0.1', '2019-03-19 22:05:11', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5933', '96', '', '127.0.0.1', '2019-03-19 22:08:46', '0', ',id:564', ',id:564', '1');
INSERT INTO `jsh_log` VALUES ('5934', '96', '', '127.0.0.1', '2019-03-19 22:10:17', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5935', '96', '', '127.0.0.1', '2019-03-19 22:10:35', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5936', '96', '', '127.0.0.1', '2019-03-19 22:11:39', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5937', '96', '', '127.0.0.1', '2019-03-19 22:12:04', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5938', '96', '', '127.0.0.1', '2019-03-19 22:12:18', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5939', '96', '', '127.0.0.1', '2019-03-19 22:12:29', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5940', '96', '', '127.0.0.1', '2019-03-19 22:12:43', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5941', '96', '', '127.0.0.1', '2019-03-19 22:12:53', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5942', '96', '', '127.0.0.1', '2019-03-19 22:13:20', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5943', '96', '', '127.0.0.1', '2019-03-19 22:13:34', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5944', '96', '', '127.0.0.1', '2019-03-19 22:14:18', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5945', '96', '', '127.0.0.1', '2019-03-19 22:14:33', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5946', '96', '', '127.0.0.1', '2019-03-19 22:14:50', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5947', '96', '', '127.0.0.1', '2019-03-19 22:15:09', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5948', '96', '', '127.0.0.1', '2019-03-19 22:15:22', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5949', '96', '', '127.0.0.1', '2019-03-19 22:15:36', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5950', '96', '', '127.0.0.1', '2019-03-19 22:16:04', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5951', '96', '', '127.0.0.1', '2019-03-19 22:35:56', '0', '', '', '1');
INSERT INTO `jsh_log` VALUES ('5952', '96', '', '127.0.0.1', '2019-03-19 22:36:03', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5953', '96', '', '127.0.0.1', '2019-03-19 22:36:11', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5954', '96', '', '127.0.0.1', '2019-03-19 22:36:24', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5955', '96', '', '127.0.0.1', '2019-03-19 22:37:17', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5956', '96', '', '127.0.0.1', '2019-03-19 22:44:12', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5957', '96', '', '127.0.0.1', '2019-03-19 22:44:18', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5958', '96', '', '127.0.0.1', '2019-03-19 22:44:23', '0', ',id:565', ',id:565', '1');
INSERT INTO `jsh_log` VALUES ('5959', '63', '', '127.0.0.1', '2019-03-19 22:48:07', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5960', '63', '', '127.0.0.1', '2019-03-19 22:48:22', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5961', '63', '', '127.0.0.1', '2019-03-19 22:48:40', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5962', '63', '', '127.0.0.1', '2019-03-21 23:50:49', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5963', '63', '', '127.0.0.1', '2019-03-21 23:51:05', '0', ',id集:51', ',id集:51', null);
INSERT INTO `jsh_log` VALUES ('5964', '63', null, '127.0.0.1', '2019-03-21 23:57:46', '0', ',id:101null', ',id:101null', null);
INSERT INTO `jsh_log` VALUES ('5965', '63', '', '127.0.0.1', '2019-03-21 23:58:56', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5966', '63', '', '127.0.0.1', '2019-03-21 23:59:18', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5967', '63', '', '127.0.0.1', '2019-03-21 23:59:38', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5968', '63', '', '127.0.0.1', '2019-03-24 23:51:47', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5969', '63', '', '127.0.0.1', '2019-03-29 00:07:16', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5970', '63', '', '127.0.0.1', '2019-03-29 00:07:21', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5971', '63', '', '127.0.0.1', '2019-03-29 00:07:52', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5972', '63', '', '127.0.0.1', '2019-03-29 00:08:07', '0', ',id:32', ',id:32', null);
INSERT INTO `jsh_log` VALUES ('5973', '63', '', '127.0.0.1', '2019-03-29 00:08:21', '0', ',id集:9', ',id集:9', null);
INSERT INTO `jsh_log` VALUES ('5974', '63', '', '127.0.0.1', '2019-03-29 00:08:24', '0', ',id:8', ',id:8', null);
INSERT INTO `jsh_log` VALUES ('5975', '63', '', '127.0.0.1', '2019-03-29 00:08:26', '0', ',id:7', ',id:7', null);
INSERT INTO `jsh_log` VALUES ('5976', '63', '', '127.0.0.1', '2019-03-29 00:08:27', '0', ',id:6', ',id:6', null);
INSERT INTO `jsh_log` VALUES ('5977', '63', '', '127.0.0.1', '2019-03-29 00:08:35', '0', ',id:32', ',id:32', null);
INSERT INTO `jsh_log` VALUES ('5978', '113', '', '127.0.0.1', '2019-03-29 00:10:02', '0', '', '', '10');
INSERT INTO `jsh_log` VALUES ('5979', '113', '', '127.0.0.1', '2019-03-29 00:11:34', '0', '', '', '113');
INSERT INTO `jsh_log` VALUES ('5980', '113', '', '127.0.0.1', '2019-03-29 00:11:39', '0', ',id:12', ',id:12', '113');
INSERT INTO `jsh_log` VALUES ('5981', '115', '', '127.0.0.1', '2019-03-31 21:18:29', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('5983', '63', '', '127.0.0.1', '2019-03-31 21:49:38', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('5984', '63', '', '127.0.0.1', '2019-03-31 21:49:49', '0', ',id:118', ',id:118', null);
INSERT INTO `jsh_log` VALUES ('6026', '63', '', '127.0.0.1', '2019-03-31 22:18:21', '0', ',id:63', ',id:63', null);
INSERT INTO `jsh_log` VALUES ('6046', '120', '', '127.0.0.1', '2019-03-31 23:17:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6047', '120', '', '127.0.0.1', '2019-03-31 23:18:10', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6048', '63', '', '127.0.0.1', '2019-04-01 22:36:16', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6049', '63', '', '127.0.0.1', '2019-04-01 22:36:27', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6050', '63', '', '127.0.0.1', '2019-04-01 22:36:50', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6051', '63', '', '127.0.0.1', '2019-04-01 22:37:14', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6052', '63', '', '127.0.0.1', '2019-04-01 22:39:07', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6053', '63', '', '127.0.0.1', '2019-04-01 22:39:14', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6054', '63', '', '127.0.0.1', '2019-04-01 22:39:52', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6055', '63', '', '127.0.0.1', '2019-04-01 22:41:39', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6056', '63', '', '127.0.0.1', '2019-04-01 22:49:09', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6057', '63', '', '127.0.0.1', '2019-04-01 22:49:41', '0', ',id:17', ',id:17', null);
INSERT INTO `jsh_log` VALUES ('6058', '63', '', '127.0.0.1', '2019-04-01 23:16:20', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6059', '63', '', '127.0.0.1', '2019-04-01 23:20:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6060', '63', '', '127.0.0.1', '2019-04-01 23:22:00', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6061', '63', '', '127.0.0.1', '2019-04-01 23:23:26', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6062', '63', '', '127.0.0.1', '2019-04-01 23:25:33', '0', ',id:45', ',id:45', null);
INSERT INTO `jsh_log` VALUES ('6063', '63', '', '127.0.0.1', '2019-04-01 23:34:27', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6064', '63', '', '127.0.0.1', '2019-04-01 23:39:52', '0', ',id:46', ',id:46', null);
INSERT INTO `jsh_log` VALUES ('6065', '63', '', '127.0.0.1', '2019-04-01 23:43:21', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6066', '63', '', '127.0.0.1', '2019-04-01 23:43:43', '0', ',id:48', ',id:48', null);
INSERT INTO `jsh_log` VALUES ('6067', '63', '', '127.0.0.1', '2019-04-01 23:43:58', '0', ',id:48', ',id:48', null);
INSERT INTO `jsh_log` VALUES ('6069', '63', '', '127.0.0.1', '2019-04-01 23:46:01', '0', ',id:48', ',id:48', null);
INSERT INTO `jsh_log` VALUES ('6070', '63', '', '127.0.0.1', '2019-04-01 23:46:26', '0', ',id:21', ',id:21', null);
INSERT INTO `jsh_log` VALUES ('6071', '63', '', '127.0.0.1', '2019-04-01 23:48:17', '0', ',id:48', ',id:48', null);
INSERT INTO `jsh_log` VALUES ('6072', '63', '', '127.0.0.1', '2019-04-01 23:49:09', '0', ',id:48', ',id:48', null);
INSERT INTO `jsh_log` VALUES ('6073', '115', '', '127.0.0.1', '2019-04-02 22:21:51', '0', ',id:116', ',id:116', '115');
INSERT INTO `jsh_log` VALUES ('6074', '115', '', '127.0.0.1', '2019-04-02 22:21:58', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6075', '120', '', '127.0.0.1', '2019-04-02 22:23:53', '0', ',id:16', ',id:16', null);
INSERT INTO `jsh_log` VALUES ('6076', '120', '', '127.0.0.1', '2019-04-02 22:24:16', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6077', '115', '', '127.0.0.1', '2019-04-02 22:28:07', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6078', '115', '', '127.0.0.1', '2019-04-02 22:28:28', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6079', '115', '', '127.0.0.1', '2019-04-02 22:28:37', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6080', '115', '', '127.0.0.1', '2019-04-02 22:28:45', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6081', '115', '', '127.0.0.1', '2019-04-02 22:28:56', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6082', '115', '', '127.0.0.1', '2019-04-02 22:28:57', '0', ',id:16', ',id:16', '115');
INSERT INTO `jsh_log` VALUES ('6083', '115', '', '127.0.0.1', '2019-04-02 22:29:11', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6084', '115', '', '127.0.0.1', '2019-04-02 22:29:28', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6085', '115', '', '127.0.0.1', '2019-04-02 22:29:46', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6086', '115', '', '127.0.0.1', '2019-04-02 22:30:01', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6087', '115', '', '127.0.0.1', '2019-04-02 22:30:01', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6088', '115', '', '127.0.0.1', '2019-04-02 22:30:01', '0', ',id:', ',id:', '115');
INSERT INTO `jsh_log` VALUES ('6089', '115', '', '127.0.0.1', '2019-04-02 22:30:20', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6090', '115', '', '127.0.0.1', '2019-04-02 22:30:20', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6091', '115', '', '127.0.0.1', '2019-04-02 22:30:20', '0', ',id:', ',id:', '115');
INSERT INTO `jsh_log` VALUES ('6092', '63', '', '127.0.0.1', '2019-04-02 22:32:00', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6093', '63', '', '127.0.0.1', '2019-04-02 22:32:00', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6094', '63', '', '127.0.0.1', '2019-04-02 22:32:00', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6095', '63', '', '127.0.0.1', '2019-04-02 22:39:44', '0', ',id:178', ',id:178', null);
INSERT INTO `jsh_log` VALUES ('6096', '63', '', '127.0.0.1', '2019-04-02 22:39:45', '0', ',id:178', ',id:178', null);
INSERT INTO `jsh_log` VALUES ('6097', '63', '', '127.0.0.1', '2019-04-02 22:39:55', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6098', '63', '', '127.0.0.1', '2019-04-02 22:39:57', '0', ',id:14', ',id:14', null);
INSERT INTO `jsh_log` VALUES ('6099', '63', '', '127.0.0.1', '2019-04-04 23:06:58', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6100', '63', '', '127.0.0.1', '2019-04-04 23:06:58', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6101', '63', '', '127.0.0.1', '2019-04-04 23:06:58', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6102', '115', '', '127.0.0.1', '2019-04-05 17:13:49', '0', ',id:54', ',id:54', '115');
INSERT INTO `jsh_log` VALUES ('6103', '115', '', '127.0.0.1', '2019-04-05 17:14:12', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6104', '115', '', '127.0.0.1', '2019-04-05 17:14:26', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6105', '115', '', '127.0.0.1', '2019-04-05 17:14:39', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6106', '115', '', '127.0.0.1', '2019-04-05 17:14:52', '0', ',id:54', ',id:54', '115');
INSERT INTO `jsh_log` VALUES ('6107', '115', '', '127.0.0.1', '2019-04-05 17:15:20', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6108', '115', '', '127.0.0.1', '2019-04-05 17:15:32', '0', '', '', '115');
INSERT INTO `jsh_log` VALUES ('6109', '115', '', '127.0.0.1', '2019-04-05 17:19:53', '0', ',id:115', ',id:115', '115');
INSERT INTO `jsh_log` VALUES ('6110', '115', '', '127.0.0.1', '2019-04-05 17:20:05', '0', ',id:115', ',id:115', '115');
INSERT INTO `jsh_log` VALUES ('6111', '115', '', '127.0.0.1', '2019-04-05 17:20:56', '0', ',id:56', ',id:56', '115');
INSERT INTO `jsh_log` VALUES ('6112', '115', '', '127.0.0.1', '2019-04-05 17:21:31', '0', ',id:56', ',id:56', '115');
INSERT INTO `jsh_log` VALUES ('6113', '63', '', '127.0.0.1', '2019-04-07 20:23:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6114', '63', '', '127.0.0.1', '2019-04-07 20:23:23', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6115', '63', '', '127.0.0.1', '2019-04-07 20:23:23', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6116', '63', '', '127.0.0.1', '2019-04-07 20:25:30', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6117', '63', '', '127.0.0.1', '2019-04-07 20:25:30', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6118', '63', '', '127.0.0.1', '2019-04-07 20:25:30', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6119', '63', '', '127.0.0.1', '2019-04-07 20:35:00', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6120', '63', '', '127.0.0.1', '2019-04-07 20:35:01', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6121', '63', '', '127.0.0.1', '2019-04-07 20:35:01', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6122', '63', '', '127.0.0.1', '2019-04-07 20:44:09', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6123', '63', '', '127.0.0.1', '2019-04-07 20:44:09', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6124', '63', '', '127.0.0.1', '2019-04-07 20:44:09', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6125', '63', '', '127.0.0.1', '2019-04-07 20:44:25', '0', ',id:184', ',id:184', null);
INSERT INTO `jsh_log` VALUES ('6126', '63', '', '127.0.0.1', '2019-04-07 20:44:25', '0', ',id:184', ',id:184', null);
INSERT INTO `jsh_log` VALUES ('6127', '63', '', '127.0.0.1', '2019-04-07 20:44:29', '0', ',id:185', ',id:185', null);
INSERT INTO `jsh_log` VALUES ('6128', '63', '', '127.0.0.1', '2019-04-07 20:44:29', '0', ',id:185', ',id:185', null);
INSERT INTO `jsh_log` VALUES ('6129', '63', '', '127.0.0.1', '2019-04-07 20:44:32', '0', ',id:186', ',id:186', null);
INSERT INTO `jsh_log` VALUES ('6130', '63', '', '127.0.0.1', '2019-04-07 20:44:32', '0', ',id:186', ',id:186', null);
INSERT INTO `jsh_log` VALUES ('6131', '63', '', '127.0.0.1', '2019-04-07 20:44:58', '0', ',id:183,182', ',id:183,182', null);
INSERT INTO `jsh_log` VALUES ('6132', '63', '', '127.0.0.1', '2019-04-07 20:44:58', '0', ',id:183', ',id:183', null);
INSERT INTO `jsh_log` VALUES ('6133', '63', '', '127.0.0.1', '2019-04-07 20:44:58', '0', ',id:183', ',id:183', null);
INSERT INTO `jsh_log` VALUES ('6134', '63', '', '127.0.0.1', '2019-04-07 20:44:58', '0', ',id:182', ',id:182', null);
INSERT INTO `jsh_log` VALUES ('6135', '63', '', '127.0.0.1', '2019-04-07 20:44:58', '0', ',id:182', ',id:182', null);
INSERT INTO `jsh_log` VALUES ('6136', '63', '', '127.0.0.1', '2019-04-07 20:45:09', '0', ',id:179', ',id:179', null);
INSERT INTO `jsh_log` VALUES ('6137', '63', '', '127.0.0.1', '2019-04-07 20:45:09', '0', ',id:179', ',id:179', null);
INSERT INTO `jsh_log` VALUES ('6138', '63', '', '127.0.0.1', '2019-04-07 20:51:51', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6139', '63', '', '127.0.0.1', '2019-04-07 20:51:51', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6140', '63', '', '127.0.0.1', '2019-04-07 20:51:51', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6141', '63', '', '127.0.0.1', '2019-04-07 22:36:48', '0', ',id:188', ',id:188', null);
INSERT INTO `jsh_log` VALUES ('6142', '63', '', '127.0.0.1', '2019-04-07 22:36:48', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6143', '63', '', '127.0.0.1', '2019-04-07 22:36:48', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6144', '63', '', '127.0.0.1', '2019-04-07 22:38:23', '0', ',id:188', ',id:188', null);
INSERT INTO `jsh_log` VALUES ('6145', '63', '', '127.0.0.1', '2019-04-07 22:38:24', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6146', '63', '', '127.0.0.1', '2019-04-07 22:38:24', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6147', '63', '', '127.0.0.1', '2019-04-07 22:39:59', '0', ',id:188', ',id:188', null);
INSERT INTO `jsh_log` VALUES ('6148', '63', '', '127.0.0.1', '2019-04-07 22:39:59', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6149', '63', '', '127.0.0.1', '2019-04-07 22:39:59', '0', ',id:', ',id:', null);
INSERT INTO `jsh_log` VALUES ('6150', '63', '', '127.0.0.1', '2019-04-10 22:18:12', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6151', '63', '', '127.0.0.1', '2019-04-10 22:18:23', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6152', '63', '', '127.0.0.1', '2019-04-10 22:18:33', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6153', '63', '', '127.0.0.1', '2019-04-10 22:18:41', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6154', '63', '', '127.0.0.1', '2019-04-10 22:18:54', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6155', '63', '', '127.0.0.1', '2019-04-10 22:19:19', '0', ',id:17', ',id:17', '63');
INSERT INTO `jsh_log` VALUES ('6156', '63', '', '127.0.0.1', '2019-04-10 22:20:07', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6157', '63', '', '127.0.0.1', '2019-04-10 22:20:19', '0', ',id:18', ',id:18', '63');
INSERT INTO `jsh_log` VALUES ('6170', '63', '', '127.0.0.1', '2019-04-10 22:24:35', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6179', '63', '', '127.0.0.1', '2019-04-10 22:25:23', '0', ',id:568', ',id:568', '63');
INSERT INTO `jsh_log` VALUES ('6180', '63', '', '127.0.0.1', '2019-04-10 22:25:32', '0', ',id:569', ',id:569', '63');
INSERT INTO `jsh_log` VALUES ('6181', '63', '', '127.0.0.1', '2019-04-10 22:25:49', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6182', '63', '', '127.0.0.1', '2019-04-10 22:25:49', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6183', '63', '', '127.0.0.1', '2019-04-10 22:25:49', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6184', '63', '', '127.0.0.1', '2019-04-10 22:26:00', '0', ',id:189', ',id:189', '63');
INSERT INTO `jsh_log` VALUES ('6185', '63', '', '127.0.0.1', '2019-04-10 22:26:00', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6186', '63', '', '127.0.0.1', '2019-04-10 22:26:00', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6187', '63', '', '127.0.0.1', '2019-04-13 19:38:11', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6188', '63', '', '127.0.0.1', '2019-04-13 19:38:22', '0', ',id:122', ',id:122', '63');
INSERT INTO `jsh_log` VALUES ('6189', '63', '', '127.0.0.1', '2019-04-13 19:57:43', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6190', '63', '', '127.0.0.1', '2019-04-13 19:57:43', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6191', '63', '', '127.0.0.1', '2019-04-13 19:57:43', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6192', '63', '', '127.0.0.1', '2019-04-13 19:57:58', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6193', '63', '', '127.0.0.1', '2019-04-13 19:57:58', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6194', '63', '', '127.0.0.1', '2019-04-13 19:57:58', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6195', '63', '', '127.0.0.1', '2019-04-13 19:58:02', '0', ',id:190', ',id:190', '63');
INSERT INTO `jsh_log` VALUES ('6196', '63', '', '127.0.0.1', '2019-04-13 19:58:02', '0', ',id:190', ',id:190', '63');
INSERT INTO `jsh_log` VALUES ('6197', '63', '', '127.0.0.1', '2019-04-13 19:58:23', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6198', '63', '', '127.0.0.1', '2019-04-20 00:36:23', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6199', '63', '', '127.0.0.1', '2019-04-20 00:36:24', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6200', '63', '', '127.0.0.1', '2019-04-20 00:36:24', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6201', '63', '', '127.0.0.1', '2019-04-29 23:39:40', '0', ',id:58', ',id:58', '63');
INSERT INTO `jsh_log` VALUES ('6202', '63', '', '127.0.0.1', '2019-04-29 23:40:06', '0', ',id:27', ',id:27', '63');
INSERT INTO `jsh_log` VALUES ('6203', '63', '', '127.0.0.1', '2019-04-29 23:40:44', '0', ',id:569', ',id:569', '63');
INSERT INTO `jsh_log` VALUES ('6204', '63', '', '127.0.0.1', '2019-04-29 23:41:02', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6205', '63', '', '127.0.0.1', '2019-04-29 23:41:02', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6206', '63', '', '127.0.0.1', '2019-04-29 23:41:02', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6207', '63', '', '127.0.0.1', '2019-04-29 23:41:29', '0', ',id:58', ',id:58', '63');
INSERT INTO `jsh_log` VALUES ('6208', '63', '', '127.0.0.1', '2019-04-29 23:41:35', '0', ',id:58', ',id:58', '63');
INSERT INTO `jsh_log` VALUES ('6209', '63', '', '127.0.0.1', '2019-04-29 23:41:39', '0', ',id:58', ',id:58', '63');
INSERT INTO `jsh_log` VALUES ('6210', '63', '', '127.0.0.1', '2019-04-30 22:31:32', '0', ',id:14', ',id:14', '63');
INSERT INTO `jsh_log` VALUES ('6211', '63', '', '127.0.0.1', '2019-04-30 22:32:09', '0', ',id:18', ',id:18', '63');
INSERT INTO `jsh_log` VALUES ('6212', '63', '', '127.0.0.1', '2019-04-30 22:32:36', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6213', '63', '', '127.0.0.1', '2019-04-30 22:32:49', '0', ',id:18', ',id:18', '63');
INSERT INTO `jsh_log` VALUES ('6214', '63', '', '127.0.0.1', '2019-04-30 22:33:04', '0', ',id:15', ',id:15', '63');
INSERT INTO `jsh_log` VALUES ('6215', '63', '', '127.0.0.1', '2019-04-30 22:33:04', '0', ',id:14', ',id:14', '63');
INSERT INTO `jsh_log` VALUES ('6216', '63', '', '127.0.0.1', '2019-04-30 22:33:23', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6217', '63', '', '127.0.0.1', '2019-04-30 22:33:24', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6218', '63', '', '127.0.0.1', '2019-04-30 22:33:24', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6219', '63', '', '127.0.0.1', '2019-04-30 22:34:23', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6220', '63', '', '127.0.0.1', '2019-04-30 22:34:45', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6221', '63', '', '127.0.0.1', '2019-04-30 22:34:45', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6222', '63', '', '127.0.0.1', '2019-04-30 22:34:45', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6223', '63', '', '127.0.0.1', '2019-04-30 22:35:53', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6224', '63', '', '127.0.0.1', '2019-04-30 22:35:53', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6225', '63', '', '127.0.0.1', '2019-04-30 22:35:53', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6226', '120', '', '127.0.0.1', '2019-04-30 22:43:37', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6227', '120', '', '127.0.0.1', '2019-04-30 22:43:52', '0', ',id:5', ',id:5', null);
INSERT INTO `jsh_log` VALUES ('6228', '120', '', '127.0.0.1', '2019-04-30 22:44:46', '0', ',id:244', ',id:244', null);
INSERT INTO `jsh_log` VALUES ('6229', '120', '', '127.0.0.1', '2019-04-30 22:46:03', '0', ',id:32', ',id:32', null);
INSERT INTO `jsh_log` VALUES ('6230', '63', '', '127.0.0.1', '2019-04-30 22:47:10', '0', ',id:568', ',id:568', '63');
INSERT INTO `jsh_log` VALUES ('6231', '63', '', '127.0.0.1', '2019-04-30 22:47:17', '0', ',id:569', ',id:569', '63');
INSERT INTO `jsh_log` VALUES ('6232', '63', '', '127.0.0.1', '2019-04-30 22:47:30', '0', ',id:570', ',id:570', '63');
INSERT INTO `jsh_log` VALUES ('6233', '63', '', '127.0.0.1', '2019-04-30 22:48:41', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6234', '63', '', '127.0.0.1', '2019-04-30 22:50:03', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6235', '63', '', '127.0.0.1', '2019-04-30 22:50:15', '0', ',id:60', ',id:60', '63');
INSERT INTO `jsh_log` VALUES ('6236', '63', '', '127.0.0.1', '2019-04-30 22:50:17', '0', ',id:60', ',id:60', '63');
INSERT INTO `jsh_log` VALUES ('6237', '63', '', '127.0.0.1', '2019-04-30 23:04:32', '0', ',id:14', ',id:14', '63');
INSERT INTO `jsh_log` VALUES ('6238', '63', '', '127.0.0.1', '2019-04-30 23:04:32', '0', ',id:15', ',id:15', '63');
INSERT INTO `jsh_log` VALUES ('6239', '63', '', '127.0.0.1', '2019-04-30 23:04:36', '0', ',id:15', ',id:15', '63');
INSERT INTO `jsh_log` VALUES ('6240', '63', '', '127.0.0.1', '2019-04-30 23:04:36', '0', ',id:14', ',id:14', '63');
INSERT INTO `jsh_log` VALUES ('6241', '63', '', '127.0.0.1', '2019-04-30 23:09:07', '0', ',id:14', ',id:14', '63');
INSERT INTO `jsh_log` VALUES ('6242', '63', '', '127.0.0.1', '2019-04-30 23:09:07', '0', ',id:15', ',id:15', '63');
INSERT INTO `jsh_log` VALUES ('6243', '63', '', '127.0.0.1', '2019-04-30 23:15:27', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6244', '63', '', '127.0.0.1', '2019-04-30 23:15:27', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6245', '63', '', '127.0.0.1', '2019-04-30 23:15:27', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6246', '63', '', '127.0.0.1', '2019-05-03 11:50:21', '0', ',id:196', ',id:196', '63');
INSERT INTO `jsh_log` VALUES ('6247', '63', '', '127.0.0.1', '2019-05-03 11:50:21', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6248', '63', '', '127.0.0.1', '2019-05-03 11:50:21', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6249', '63', '', '127.0.0.1', '2019-05-03 11:51:52', '0', ',id:196', ',id:196', '63');
INSERT INTO `jsh_log` VALUES ('6250', '63', '', '127.0.0.1', '2019-05-03 11:51:52', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6251', '63', '', '127.0.0.1', '2019-05-03 11:51:52', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6252', '63', '', '127.0.0.1', '2019-05-03 11:57:49', '0', ',id:196', ',id:196', '63');
INSERT INTO `jsh_log` VALUES ('6253', '63', '', '127.0.0.1', '2019-05-03 11:57:49', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6254', '63', '', '127.0.0.1', '2019-05-03 11:57:49', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6255', '63', '', '127.0.0.1', '2019-05-03 13:05:32', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6256', '63', '', '127.0.0.1', '2019-05-03 13:20:45', '0', ',id:61', ',id:61', '63');
INSERT INTO `jsh_log` VALUES ('6257', '63', '', '127.0.0.1', '2019-05-03 13:25:50', '0', ',id:57', ',id:57', '63');
INSERT INTO `jsh_log` VALUES ('6258', '63', '', '127.0.0.1', '2019-05-03 13:25:58', '0', ',id:57', ',id:57', '63');
INSERT INTO `jsh_log` VALUES ('6259', '63', '', '127.0.0.1', '2019-05-03 13:27:23', '0', ',id:57', ',id:57', '63');
INSERT INTO `jsh_log` VALUES ('6260', '63', '', '127.0.0.1', '2019-05-03 13:27:32', '0', ',id:57', ',id:57', '63');
INSERT INTO `jsh_log` VALUES ('6261', '63', '', '127.0.0.1', '2019-05-03 13:28:45', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6262', '63', '', '127.0.0.1', '2019-05-03 13:43:28', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6263', '63', '', '127.0.0.1', '2019-05-03 13:43:31', '0', ',id:63', ',id:63', '63');
INSERT INTO `jsh_log` VALUES ('6264', '63', '', '127.0.0.1', '2019-05-03 13:43:35', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6265', '63', '', '127.0.0.1', '2019-05-03 13:43:44', '0', ',id:64', ',id:64', '63');
INSERT INTO `jsh_log` VALUES ('6266', '63', '', '127.0.0.1', '2019-05-03 13:45:52', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6267', '63', '', '127.0.0.1', '2019-05-03 13:46:17', '0', ',id:65', ',id:65', '63');
INSERT INTO `jsh_log` VALUES ('6268', '63', '', '127.0.0.1', '2019-05-03 13:46:23', '0', ',id:62,64,65', ',id:62,64,65', '63');
INSERT INTO `jsh_log` VALUES ('6269', '63', '', '127.0.0.1', '2019-05-03 13:46:28', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6270', '63', '', '127.0.0.1', '2019-05-03 13:46:34', '0', ',id:66', ',id:66', '63');
INSERT INTO `jsh_log` VALUES ('6271', '63', '', '127.0.0.1', '2019-05-03 13:46:58', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6272', '63', '', '127.0.0.1', '2019-05-03 13:47:07', '0', ',id:67', ',id:67', '63');
INSERT INTO `jsh_log` VALUES ('6273', '63', '', '127.0.0.1', '2019-05-03 13:47:17', '0', ',id:67', ',id:67', '63');
INSERT INTO `jsh_log` VALUES ('6274', '63', '', '127.0.0.1', '2019-05-03 13:54:20', '0', ',id:67', ',id:67', '63');
INSERT INTO `jsh_log` VALUES ('6275', '63', '', '127.0.0.1', '2019-05-03 13:54:32', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6276', '63', '', '127.0.0.1', '2019-05-03 13:55:00', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6277', '63', '', '127.0.0.1', '2019-05-03 13:55:33', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6278', '63', '', '127.0.0.1', '2019-05-03 13:56:22', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6279', '63', '', '127.0.0.1', '2019-05-03 13:56:42', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6280', '63', '', '127.0.0.1', '2019-05-03 13:57:06', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6281', '63', '', '127.0.0.1', '2019-05-03 13:57:24', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6282', '63', '', '127.0.0.1', '2019-05-03 13:57:42', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6283', '63', '', '127.0.0.1', '2019-05-03 13:57:50', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6284', '63', '', '127.0.0.1', '2019-05-03 13:58:33', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6285', '63', '', '127.0.0.1', '2019-05-03 13:58:43', '0', ',id:68', ',id:68', '63');
INSERT INTO `jsh_log` VALUES ('6286', '63', '', '127.0.0.1', '2019-05-03 14:00:00', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6287', '63', '', '127.0.0.1', '2019-05-03 14:00:56', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6288', '63', '', '127.0.0.1', '2019-05-03 14:06:56', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6289', '63', '', '127.0.0.1', '2019-05-03 14:07:09', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6290', '63', '', '127.0.0.1', '2019-05-03 14:07:19', '0', ',id:572,573', ',id:572,573', '63');
INSERT INTO `jsh_log` VALUES ('6291', '63', '', '127.0.0.1', '2019-05-03 14:14:43', '0', ',id:571', ',id:571', '63');
INSERT INTO `jsh_log` VALUES ('6292', '63', '', '127.0.0.1', '2019-05-03 14:15:13', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6295', '63', '', '127.0.0.1', '2019-05-03 14:16:06', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6296', '63', '', '127.0.0.1', '2019-05-03 14:16:15', '0', ',id:574,575', ',id:574,575', '63');
INSERT INTO `jsh_log` VALUES ('6297', '63', '', '127.0.0.1', '2019-05-03 14:17:08', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6298', '63', '', '127.0.0.1', '2019-05-03 14:17:12', '0', ',id:576', ',id:576', '63');
INSERT INTO `jsh_log` VALUES ('6299', '63', '', '127.0.0.1', '2019-05-03 14:17:39', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6300', '63', '', '127.0.0.1', '2019-05-03 14:18:59', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6301', '63', '', '127.0.0.1', '2019-05-03 14:19:17', '0', ',id:578', ',id:578', '63');
INSERT INTO `jsh_log` VALUES ('6302', '63', '', '127.0.0.1', '2019-05-03 14:19:27', '0', ',id:578', ',id:578', '63');
INSERT INTO `jsh_log` VALUES ('6303', '63', '', '127.0.0.1', '2019-05-03 14:19:34', '0', ',id:578', ',id:578', '63');
INSERT INTO `jsh_log` VALUES ('6304', '63', '', '127.0.0.1', '2019-05-03 14:20:56', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6305', '63', '', '127.0.0.1', '2019-05-03 14:20:56', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6306', '63', '', '127.0.0.1', '2019-05-03 14:20:56', '0', ',id:', ',id:', '63');
INSERT INTO `jsh_log` VALUES ('6307', '63', '', '127.0.0.1', '2019-05-03 14:21:11', '0', ',id:578', ',id:578', '63');
INSERT INTO `jsh_log` VALUES ('6312', '63', '', '127.0.0.1', '2019-05-03 14:35:11', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6314', '63', '', '127.0.0.1', '2019-05-03 14:36:06', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6315', '63', '', '127.0.0.1', '2019-05-03 14:36:18', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6316', '63', '', '127.0.0.1', '2019-05-03 14:40:05', '0', ',id:581', ',id:581', '63');
INSERT INTO `jsh_log` VALUES ('6317', '63', '', '127.0.0.1', '2019-05-03 14:40:07', '0', ',id:581', ',id:581', '63');
INSERT INTO `jsh_log` VALUES ('6318', '63', '', '127.0.0.1', '2019-05-03 14:40:10', '0', ',id:581', ',id:581', '63');
INSERT INTO `jsh_log` VALUES ('6319', '63', '', '127.0.0.1', '2019-05-03 14:40:12', '0', ',id:580', ',id:580', '63');
INSERT INTO `jsh_log` VALUES ('6320', '63', '', '127.0.0.1', '2019-05-03 14:40:24', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6321', '63', '', '127.0.0.1', '2019-05-03 14:40:46', '0', ',id:582', ',id:582', '63');
INSERT INTO `jsh_log` VALUES ('6322', '63', '', '127.0.0.1', '2019-05-03 14:43:25', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6323', '63', '', '127.0.0.1', '2019-05-03 14:43:28', '0', ',id:583', ',id:583', '63');
INSERT INTO `jsh_log` VALUES ('6324', '63', '', '127.0.0.1', '2019-05-03 14:45:57', '0', ',id:582', ',id:582', '63');
INSERT INTO `jsh_log` VALUES ('6325', '63', '', '127.0.0.1', '2019-05-03 14:46:18', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6326', '63', '', '127.0.0.1', '2019-05-03 14:46:38', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6327', '63', '', '127.0.0.1', '2019-05-03 14:46:43', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6328', '63', '', '127.0.0.1', '2019-05-03 14:46:51', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6329', '63', '', '127.0.0.1', '2019-05-03 14:47:13', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6330', '63', '', '127.0.0.1', '2019-05-03 14:47:18', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6331', '63', '', '127.0.0.1', '2019-05-03 14:47:21', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6332', '63', '', '127.0.0.1', '2019-05-03 14:47:29', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6333', '63', '', '127.0.0.1', '2019-05-03 14:48:53', '0', ',id:584', ',id:584', '63');
INSERT INTO `jsh_log` VALUES ('6334', '63', '', '127.0.0.1', '2019-05-03 14:49:11', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6335', '63', '', '127.0.0.1', '2019-05-03 14:55:10', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6336', '63', '', '127.0.0.1', '2019-05-03 14:55:26', '0', ',id:69', ',id:69', '63');
INSERT INTO `jsh_log` VALUES ('6337', '63', '', '127.0.0.1', '2019-05-03 14:56:46', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6338', '63', '', '127.0.0.1', '2019-05-03 14:57:13', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6339', '63', '', '127.0.0.1', '2019-05-03 14:58:47', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6340', '63', '', '127.0.0.1', '2019-05-03 14:58:52', '0', '', '', '63');
INSERT INTO `jsh_log` VALUES ('6341', '63', '', '127.0.0.1', '2019-05-03 14:59:03', '0', ',id:70,72,73', ',id:70,72,73', '63');
INSERT INTO `jsh_log` VALUES ('6342', '120', '', '127.0.0.1', '2019-05-03 16:37:15', '0', ',id:32', ',id:32', null);
INSERT INTO `jsh_log` VALUES ('6343', '120', '', '127.0.0.1', '2019-05-03 16:55:52', '0', '', '', null);
INSERT INTO `jsh_log` VALUES ('6344', '120', '', '127.0.0.1', '2019-05-03 16:56:20', '0', ',id:32', ',id:32', null);
INSERT INTO `jsh_log` VALUES ('6345', '120', '', '127.0.0.1', '2019-05-03 16:57:24', '0', ',id:5', ',id:5', null);
INSERT INTO `jsh_log` VALUES ('6346', '120', '', '127.0.0.1', '2019-05-03 16:58:04', '0', ',id:245', ',id:245', null);
INSERT INTO `jsh_log` VALUES ('6347', '63', '', '127.0.0.1', '2019-05-03 17:06:47', '0', '', '', '63');
-- ----------------------------
-- Table structure for `jsh_material`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_material`;
CREATE TABLE `jsh_material` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`CategoryId` bigint(20) DEFAULT NULL COMMENT '',
`Name` varchar(50) DEFAULT NULL COMMENT '',
`Mfrs` varchar(50) DEFAULT NULL COMMENT '',
`Packing` decimal(24,6) DEFAULT NULL COMMENT 'KG/',
`SafetyStock` decimal(24,6) DEFAULT NULL COMMENT 'KG',
`Model` varchar(50) DEFAULT NULL COMMENT '',
`Standard` varchar(50) DEFAULT NULL COMMENT '',
`Color` varchar(50) DEFAULT NULL COMMENT '',
`Unit` varchar(50) DEFAULT NULL COMMENT '-',
`Remark` varchar(100) DEFAULT NULL COMMENT '',
`RetailPrice` decimal(24,6) DEFAULT NULL COMMENT '',
`LowPrice` decimal(24,6) DEFAULT NULL COMMENT '',
`PresetPriceOne` decimal(24,6) DEFAULT NULL COMMENT '',
`PresetPriceTwo` decimal(24,6) DEFAULT NULL COMMENT '',
`UnitId` bigint(20) DEFAULT NULL COMMENT 'Id',
`FirstOutUnit` varchar(50) DEFAULT NULL COMMENT '',
`FirstInUnit` varchar(50) DEFAULT NULL COMMENT '',
`PriceStrategy` varchar(500) DEFAULT NULL COMMENT '',
`Enabled` bit(1) DEFAULT NULL COMMENT ' 0- 1-',
`OtherField1` varchar(50) DEFAULT NULL COMMENT '1',
`OtherField2` varchar(50) DEFAULT NULL COMMENT '2',
`OtherField3` varchar(50) DEFAULT NULL COMMENT '3',
`enableSerialNumber` varchar(1) DEFAULT '0' COMMENT '01',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`Id`),
KEY `FK675951272AB6672C` (`CategoryId`),
KEY `UnitId` (`UnitId`)
) ENGINE=InnoDB AUTO_INCREMENT=586 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_material
-- ----------------------------
INSERT INTO `jsh_material` VALUES ('485', '2', '线', 'a1', null, '100.000000', 'A21-4321', '5g', '', '', '', '1.000000', '1.000000', '1.000000', '1.000000', null, '', '', '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', 'b2', 'c3', 'd4', '0', null, '0');
INSERT INTO `jsh_material` VALUES ('487', '1', '', 'b', null, '100.000000', '12343', '10g', '', '', '', '1.000000', '1.000000', '1.000000', '1.000000', null, '', '', '[{\"basic\":{\"Unit\":\"kg\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}},{\"other\":{\"Unit\":\"包\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', null, null, null, '0', null, '0');
INSERT INTO `jsh_material` VALUES ('498', '1', '', 'c', null, null, 'B123a', '6g', '', '', '', '1.200000', '1.000000', '1.300000', '1.400000', null, '', '', '[{\"basic\":{\"Unit\":\"kg\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}},{\"other\":{\"Unit\":\"包\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', null, null, null, '0', null, '0');
INSERT INTO `jsh_material` VALUES ('499', '1', '线', 'd', null, null, 'A21-1234', '7g', '', '', '', '2.200000', '2.000000', '2.400000', '2.600000', null, '', '', '[{\"basic\":{\"Unit\":\"kg\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}},{\"other\":{\"Unit\":\"包\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', null, null, null, '0', null, '0');
INSERT INTO `jsh_material` VALUES ('500', '1', '线', 'e', null, null, 'AAA666', '11g', '', '', '', '1.100000', '1.000000', '1.200000', '1.300000', null, '', '', '[{\"basic\":{\"Unit\":\"kg\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}},{\"other\":{\"Unit\":\"包\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', null, null, null, '0', null, '0');
INSERT INTO `jsh_material` VALUES ('517', '1', '', '', null, null, 'AAAA', '12ml', '', '', '', null, null, null, null, '8', '', '', '[{\"basic\":{\"Unit\":\"瓶\",\"RetailPrice\":\"1.5\",\"LowPrice\":\"2\",\"PresetPriceOne\":\"3\",\"PresetPriceTwo\":\"4\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"18\",\"LowPrice\":\"24\",\"PresetPriceOne\":\"36\",\"PresetPriceTwo\":\"48\"}}]', '', null, null, null, '0', null, '0');
INSERT INTO `jsh_material` VALUES ('518', '1', '', '', null, null, 'abcd', '350ml', '', '', '', null, null, null, null, '2', 'kg', '', '[{\"basic\":{\"Unit\":\"kg\",\"RetailPrice\":\"2\",\"LowPrice\":\"1\",\"PresetPriceOne\":\"3\",\"PresetPriceTwo\":\"4\"}},{\"other\":{\"Unit\":\"包\",\"RetailPrice\":\"50\",\"LowPrice\":\"25\",\"PresetPriceOne\":\"75\",\"PresetPriceTwo\":\"100\"}}]', '', '', '', '', '0', null, '0');
INSERT INTO `jsh_material` VALUES ('562', '1', '', '', null, null, '60#', '', '', '', '', '12.000000', '10.000000', '8.000000', '11.000000', null, '', '', '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"enableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', null, '0');
INSERT INTO `jsh_material` VALUES ('563', '8', '139', '', null, null, '139', '1', '绿', '', '', '11.000000', '11.000000', '11.000000', '11.000000', null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"enableSerialNumber\":\"1\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '1', null, '0');
INSERT INTO `jsh_material` VALUES ('564', '14', '1', '', null, null, 'sp1', '', '', '', '', '22.000000', '22.000000', '22.000000', '22.000000', null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"enableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '1', '0');
INSERT INTO `jsh_material` VALUES ('565', '14', '2', '', null, null, 'sp2', '', '', '', '', '44.000000', '44.000000', '44.000000', '44.000000', null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"1\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '1', '1', '0');
INSERT INTO `jsh_material` VALUES ('566', '15', '666', '', null, null, 'sp666', '', '', '', '', '5.000000', '4.000000', '3.000000', '2.000000', null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '117', '0');
INSERT INTO `jsh_material` VALUES ('567', null, '1', '', null, null, 'dsp1', '', '', '', '', '11.000000', '11.000000', '11.000000', '11.000000', null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '115', '0');
INSERT INTO `jsh_material` VALUES ('568', '17', '1', '', null, '100.000000', 'sp1', '', '', '', '', null, null, null, null, null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '0');
INSERT INTO `jsh_material` VALUES ('569', '17', '2', '', null, '200.000000', 'sp2', '', '', '', '', '5.000000', '5.000000', '5.000000', '5.000000', null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '0');
INSERT INTO `jsh_material` VALUES ('570', '17', '3', '', null, '300.000000', 'sp3', '', '', '', '', null, null, null, null, null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '0');
INSERT INTO `jsh_material` VALUES ('571', null, '4', '', null, null, 'sp4', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"3\",\"LowPrice\":\"2\",\"PresetPriceOne\":\"2\",\"PresetPriceTwo\":\"2\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"36\",\"LowPrice\":\"24\",\"PresetPriceOne\":\"24\",\"PresetPriceTwo\":\"24\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('572', null, '234234', '', null, null, '234234', '', '', '', '', null, null, null, null, null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('573', null, '12312', '', null, null, '12', '', '', '', '', null, null, null, null, null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('574', null, '5', '', null, null, '213qw', '', '', '', '', null, null, null, null, null, null, null, '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('575', null, '6', '', null, null, 'sp6', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('576', null, '7', '', null, null, 'sp7', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('577', null, '8', '', null, null, 'sp8', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '0');
INSERT INTO `jsh_material` VALUES ('578', '17', '9', '', null, null, 'sp9', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('579', null, '17', '', null, null, 'sp17', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '0');
INSERT INTO `jsh_material` VALUES ('580', null, '15', '', null, null, '15', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('581', null, '16', '', null, null, '16', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('582', null, '20', '', null, null, 'sp2', '', '', '', '', null, null, null, null, null, '', '', '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('583', null, 'wer', '', null, null, 'rqwe', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('584', null, 'sfds', '', null, null, 'a2233', '12', '2', 'ge', '', '1.000000', '2.000000', '3.000000', '4.000000', null, '', '', '[{\"basic\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '1');
INSERT INTO `jsh_material` VALUES ('585', null, 'asdf', '', null, null, 'adsfasdf', '', '', '', '', null, null, null, null, '15', '', '', '[{\"basic\":{\"Unit\":\"个\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\",\"EnableSerialNumber\":\"0\"}},{\"other\":{\"Unit\":\"箱\",\"RetailPrice\":\"\",\"LowPrice\":\"\",\"PresetPriceOne\":\"\",\"PresetPriceTwo\":\"\"}}]', '', '', '', '', '0', '63', '0');
-- ----------------------------
-- Table structure for `jsh_materialcategory`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_materialcategory`;
CREATE TABLE `jsh_materialcategory` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`Name` varchar(50) DEFAULT NULL COMMENT '',
`CategoryLevel` smallint(6) DEFAULT NULL COMMENT '',
`ParentId` bigint(20) DEFAULT NULL COMMENT 'ID',
`sort` varchar(10) DEFAULT NULL COMMENT '',
`status` varchar(1) DEFAULT '0' COMMENT '012',
`serial_no` varchar(100) DEFAULT NULL COMMENT '',
`remark` varchar(1024) DEFAULT NULL COMMENT '',
`create_time` datetime DEFAULT NULL COMMENT '',
`creator` bigint(20) DEFAULT NULL COMMENT '',
`update_time` datetime DEFAULT NULL COMMENT '',
`updater` bigint(20) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
PRIMARY KEY (`Id`),
KEY `FK3EE7F725237A77D8` (`ParentId`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_materialcategory
-- ----------------------------
INSERT INTO `jsh_materialcategory` VALUES ('1', '', '1', '-1', null, '2', '1', null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('2', 'A', '1', '1', '', '2', '', '', null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('3', 'B', '1', '1', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('4', '', '2', '3', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('5', '', '3', '4', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('6', 'A', '2', '2', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('7', 'A', '3', '6', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('8', 'B', '2', '2', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('9', 'C', '1', '1', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('10', 'B', '3', '6', null, '2', null, null, null, null, '2019-03-15 23:09:05', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('11', 'ddddd', null, '-1', '', '1', '', '', '2019-03-15 23:09:13', '63', '2019-03-15 23:09:13', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('12', 'ffffff', null, '11', '', '1', '', '', '2019-03-15 23:09:27', '63', '2019-03-15 23:09:27', '63', null);
INSERT INTO `jsh_materialcategory` VALUES ('13', '1', null, '-1', '', '1', '111', '', '2019-03-18 22:45:39', '63', '2019-03-18 22:45:39', '63', '1');
INSERT INTO `jsh_materialcategory` VALUES ('14', '2', null, '13', '', '1', '234', '', '2019-03-18 23:39:39', '63', '2019-03-18 23:39:39', '63', '1');
INSERT INTO `jsh_materialcategory` VALUES ('15', '1', null, '-1', '', '1', '', '', '2019-03-31 21:53:53', '117', '2019-03-31 21:53:53', '117', '117');
INSERT INTO `jsh_materialcategory` VALUES ('16', 'aaaa', null, '-1', '', '1', '', '', '2019-04-02 22:28:07', '115', '2019-04-02 22:28:07', '115', '115');
INSERT INTO `jsh_materialcategory` VALUES ('17', '1', null, '-1', '', '1', '', '', '2019-04-10 22:18:12', '63', '2019-04-10 22:18:12', '63', '63');
-- ----------------------------
-- Table structure for `jsh_materialproperty`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_materialproperty`;
CREATE TABLE `jsh_materialproperty` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`nativeName` varchar(50) DEFAULT NULL COMMENT '',
`enabled` bit(1) DEFAULT NULL COMMENT '',
`sort` varchar(10) DEFAULT NULL COMMENT '',
`anotherName` varchar(50) DEFAULT NULL COMMENT '',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_materialproperty
-- ----------------------------
INSERT INTO `jsh_materialproperty` VALUES ('1', '', '', '02', '', '0');
INSERT INTO `jsh_materialproperty` VALUES ('2', '', '', '01', '', '0');
INSERT INTO `jsh_materialproperty` VALUES ('3', '', '', '03', '', '0');
INSERT INTO `jsh_materialproperty` VALUES ('4', '1', '', '04', '1', '0');
INSERT INTO `jsh_materialproperty` VALUES ('5', '2', '', '05', '2', '0');
INSERT INTO `jsh_materialproperty` VALUES ('6', '3', '', '06', '3', '0');
-- ----------------------------
-- Table structure for `jsh_organization`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_organization`;
CREATE TABLE `jsh_organization` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`org_no` varchar(20) DEFAULT NULL COMMENT '',
`org_full_name` varchar(500) DEFAULT NULL COMMENT '',
`org_abr` varchar(20) DEFAULT NULL COMMENT '',
`org_tpcd` varchar(9) DEFAULT NULL COMMENT '',
`org_stcd` char(1) DEFAULT NULL COMMENT ',12345',
`org_parent_no` varchar(20) DEFAULT NULL COMMENT '',
`sort` varchar(20) DEFAULT NULL COMMENT '',
`remark` varchar(500) DEFAULT NULL COMMENT '',
`create_time` datetime DEFAULT NULL COMMENT '',
`creator` bigint(20) DEFAULT NULL COMMENT '',
`update_time` datetime DEFAULT NULL COMMENT '',
`updater` bigint(20) DEFAULT NULL COMMENT '',
`org_create_time` datetime DEFAULT NULL COMMENT '',
`org_stop_time` datetime DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_organization
-- ----------------------------
INSERT INTO `jsh_organization` VALUES ('1', '01', '', '', null, '5', '-1', '1', '', null, null, '2019-03-15 23:01:21', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('2', null, '', '', null, '5', '01', '1', '', null, null, '2019-03-15 23:01:21', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('3', null, 'sdf444', 'sdf444', null, '5', '01', '2', '', null, null, '2019-03-15 23:01:19', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('4', null, '1231', '1231', null, '5', '01', '3', '', null, null, '2019-03-15 23:01:19', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('5', null, '23', '23', null, '5', '01', '4', '', null, null, '2019-03-15 23:01:19', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('6', '4444', 'abcd', 'abcd', null, '1', '-1', '', '', '2019-03-15 23:01:30', '63', '2019-03-15 23:01:47', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('7', '123', 'bbbb', 'bbbb', null, '1', 'abcd', '', '', '2019-03-15 23:01:42', '63', '2019-03-15 23:01:42', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('8', 'ddddd', 'ddddd', 'ddddd', null, '1', '4444', '', '', '2019-03-15 23:02:02', '63', '2019-03-15 23:02:02', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('9', '555', 'dddddddddd', 'dddddddddd', null, '1', 'ddddd', '', '', '2019-03-15 23:02:16', '63', '2019-03-15 23:02:16', '63', null, null, null);
INSERT INTO `jsh_organization` VALUES ('10', '23124', 'gaga', 'gaga', null, '1', '-1', '11', '', '2019-03-31 21:52:31', '117', '2019-03-31 21:52:31', '117', null, null, '117');
INSERT INTO `jsh_organization` VALUES ('11', '12312', 'fsadfasdf', 'fsadfasdf', null, '1', '23124', '12312', '', '2019-03-31 21:52:52', '117', '2019-03-31 21:52:52', '117', null, null, '117');
-- ----------------------------
-- Table structure for `jsh_orga_user_rel`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_orga_user_rel`;
CREATE TABLE `jsh_orga_user_rel` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`orga_id` bigint(20) NOT NULL COMMENT 'id',
`user_id` bigint(20) NOT NULL COMMENT 'id',
`user_blng_orga_dspl_seq` varchar(20) DEFAULT NULL COMMENT '',
`delete_flag` char(1) DEFAULT '0' COMMENT '01',
`create_time` datetime DEFAULT NULL COMMENT '',
`creator` bigint(20) DEFAULT NULL COMMENT '',
`update_time` datetime DEFAULT NULL COMMENT '',
`updater` bigint(20) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_orga_user_rel
-- ----------------------------
INSERT INTO `jsh_orga_user_rel` VALUES ('1', '9', '64', '', '0', null, null, '2019-03-15 23:03:39', '63', null);
INSERT INTO `jsh_orga_user_rel` VALUES ('2', '3', '65', null, '0', null, null, null, null, null);
INSERT INTO `jsh_orga_user_rel` VALUES ('3', '3', '67', null, '0', null, null, null, null, null);
INSERT INTO `jsh_orga_user_rel` VALUES ('4', '4', '84', null, '0', null, null, null, null, null);
INSERT INTO `jsh_orga_user_rel` VALUES ('5', '5', '86', null, '0', null, null, null, null, null);
INSERT INTO `jsh_orga_user_rel` VALUES ('6', '3', '91', '', '0', '2019-03-12 21:55:28', '63', '2019-03-12 21:55:28', '63', null);
INSERT INTO `jsh_orga_user_rel` VALUES ('7', '9', '95', '', '0', '2019-03-15 23:03:22', '63', '2019-03-15 23:03:22', '63', null);
INSERT INTO `jsh_orga_user_rel` VALUES ('8', '9', '96', '', '0', '2019-03-17 23:32:08', '63', '2019-03-17 23:32:08', '63', null);
INSERT INTO `jsh_orga_user_rel` VALUES ('9', '10', '117', '', '0', '2019-03-31 21:53:03', '117', '2019-03-31 21:53:12', '117', '117');
-- ----------------------------
-- Table structure for `jsh_person`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_person`;
CREATE TABLE `jsh_person` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`Type` varchar(20) DEFAULT NULL COMMENT '',
`Name` varchar(50) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_person
-- ----------------------------
INSERT INTO `jsh_person` VALUES ('3', '', '-', null, '0');
INSERT INTO `jsh_person` VALUES ('4', '', '-', null, '0');
INSERT INTO `jsh_person` VALUES ('5', '', '', null, '0');
INSERT INTO `jsh_person` VALUES ('6', '', '', null, '0');
INSERT INTO `jsh_person` VALUES ('7', '', '', null, '0');
INSERT INTO `jsh_person` VALUES ('8', '', '', '1', '0');
INSERT INTO `jsh_person` VALUES ('9', '', '', '1', '0');
INSERT INTO `jsh_person` VALUES ('10', '', '', '117', '0');
INSERT INTO `jsh_person` VALUES ('11', '', '', '117', '0');
INSERT INTO `jsh_person` VALUES ('12', '', '', '117', '0');
INSERT INTO `jsh_person` VALUES ('13', '', '1', '115', '0');
-- ----------------------------
-- Table structure for `jsh_role`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_role`;
CREATE TABLE `jsh_role` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`Name` varchar(50) DEFAULT NULL COMMENT '',
`type` varchar(50) DEFAULT NULL COMMENT '',
`value` varchar(200) DEFAULT NULL COMMENT '',
`description` varchar(100) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_role
-- ----------------------------
INSERT INTO `jsh_role` VALUES ('4', '', null, null, null, null, '0');
INSERT INTO `jsh_role` VALUES ('5', '', null, null, null, null, '0');
INSERT INTO `jsh_role` VALUES ('10', '', null, null, null, null, '0');
INSERT INTO `jsh_role` VALUES ('12', '123', null, null, null, '117', '0');
INSERT INTO `jsh_role` VALUES ('13', 'test', null, null, null, null, '0');
INSERT INTO `jsh_role` VALUES ('14', '44444', null, null, null, null, '1');
INSERT INTO `jsh_role` VALUES ('15', 'laoba角色', null, null, null, '115', '0');
INSERT INTO `jsh_role` VALUES ('16', '123', null, null, null, '63', '0');
-- ----------------------------
-- Table structure for `jsh_serial_number`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_serial_number`;
CREATE TABLE `jsh_serial_number` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`material_Id` bigint(20) DEFAULT NULL COMMENT 'id',
`serial_Number` varchar(64) DEFAULT NULL COMMENT '',
`is_Sell` varchar(1) DEFAULT '0' COMMENT '01',
`remark` varchar(1024) DEFAULT NULL COMMENT '',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
`create_Time` datetime DEFAULT NULL COMMENT '',
`creator` bigint(20) DEFAULT NULL COMMENT '',
`update_Time` datetime DEFAULT NULL COMMENT '',
`updater` bigint(20) DEFAULT NULL COMMENT '',
`depothead_Id` bigint(20) DEFAULT NULL COMMENT 'id',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_serial_number
-- ----------------------------
INSERT INTO `jsh_serial_number` VALUES ('1', '563', '13915521178850971', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('2', '563', '13915521178850972', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('3', '563', '13915521178850973', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('4', '563', '13915521178850974', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('5', '563', '13915521178850975', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('6', '563', '13915521178850976', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('7', '563', '13915521178850977', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('8', '563', '13915521178850978', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('9', '563', '13915521178850979', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('10', '563', '139155211788509710', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:53:07', '63', '117', null);
INSERT INTO `jsh_serial_number` VALUES ('11', '563', '139155211788509711', '1', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:57:26', '63', '118', null);
INSERT INTO `jsh_serial_number` VALUES ('12', '563', '139155211788509712', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('13', '563', '139155211788509713', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('14', '563', '139155211788509714', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('15', '563', '139155211788509715', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('16', '563', '139155211788509716', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('17', '563', '139155211788509717', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('18', '563', '139155211788509718', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('19', '563', '139155211788509719', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('20', '563', '139155211788509720', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('21', '563', '139155211788509721', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('22', '563', '139155211788509722', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('23', '563', '139155211788509723', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('24', '563', '139155211788509724', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('25', '563', '139155211788509725', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('26', '563', '139155211788509726', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('27', '563', '139155211788509727', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('28', '563', '139155211788509728', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('29', '563', '139155211788509729', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('30', '563', '139155211788509730', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('31', '563', '139155211788509731', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('32', '563', '139155211788509732', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('33', '563', '139155211788509733', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('34', '563', '139155211788509734', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('35', '563', '139155211788509735', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('36', '563', '139155211788509736', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('37', '563', '139155211788509737', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('38', '563', '139155211788509738', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('39', '563', '139155211788509739', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('40', '563', '139155211788509740', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('41', '563', '139155211788509741', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('42', '563', '139155211788509742', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('43', '563', '139155211788509743', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('44', '563', '139155211788509744', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('45', '563', '139155211788509745', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('46', '563', '139155211788509746', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('47', '563', '139155211788509747', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('48', '563', '139155211788509748', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('49', '563', '139155211788509749', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('50', '563', '139155211788509750', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('51', '563', '139155211788509751', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('52', '563', '139155211788509752', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('53', '563', '139155211788509753', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('54', '563', '139155211788509754', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('55', '563', '139155211788509755', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('56', '563', '139155211788509756', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('57', '563', '139155211788509757', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('58', '563', '139155211788509758', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('59', '563', '139155211788509759', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('60', '563', '139155211788509760', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('61', '563', '139155211788509761', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('62', '563', '139155211788509762', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('63', '563', '139155211788509763', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('64', '563', '139155211788509764', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('65', '563', '139155211788509765', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('66', '563', '139155211788509766', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('67', '563', '139155211788509767', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('68', '563', '139155211788509768', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('69', '563', '139155211788509769', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('70', '563', '139155211788509770', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('71', '563', '139155211788509771', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('72', '563', '139155211788509772', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('73', '563', '139155211788509773', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('74', '563', '139155211788509774', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('75', '563', '139155211788509775', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('76', '563', '139155211788509776', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('77', '563', '139155211788509777', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('78', '563', '139155211788509778', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('79', '563', '139155211788509779', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('80', '563', '139155211788509780', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('81', '563', '139155211788509781', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('82', '563', '139155211788509782', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('83', '563', '139155211788509783', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('84', '563', '139155211788509784', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('85', '563', '139155211788509785', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('86', '563', '139155211788509786', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('87', '563', '139155211788509787', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('88', '563', '139155211788509788', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('89', '563', '139155211788509789', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('90', '563', '139155211788509790', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('91', '563', '139155211788509791', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('92', '563', '139155211788509792', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('93', '563', '139155211788509793', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('94', '563', '139155211788509794', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('95', '563', '139155211788509795', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('96', '563', '139155211788509796', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('97', '563', '139155211788509797', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('98', '563', '139155211788509798', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('99', '563', '139155211788509799', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('100', '563', '1391552117885097100', '0', '', '0', '2019-03-09 15:51:25', '63', '2019-03-09 15:51:25', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('102', '563', '123123123', '0', '', '0', '2019-03-21 23:57:29', '63', '2019-03-21 23:57:29', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('103', '565', '2222222', '0', '', '0', '2019-03-21 23:57:37', '63', '2019-03-21 23:57:37', '63', null, null);
INSERT INTO `jsh_serial_number` VALUES ('104', '563', '234213123', '0', '', '0', '2019-03-21 23:58:00', '63', '2019-03-21 23:58:00', '63', null, null);
-- ----------------------------
-- Table structure for `jsh_supplier`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_supplier`;
CREATE TABLE `jsh_supplier` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`supplier` varchar(255) NOT NULL COMMENT '',
`contacts` varchar(100) DEFAULT NULL COMMENT '',
`phonenum` varchar(30) DEFAULT NULL COMMENT '',
`email` varchar(50) DEFAULT NULL COMMENT '',
`description` varchar(500) DEFAULT NULL COMMENT '',
`isystem` tinyint(4) DEFAULT NULL COMMENT ' 0== 1==',
`type` varchar(20) DEFAULT NULL COMMENT '',
`enabled` bit(1) DEFAULT NULL COMMENT '',
`AdvanceIn` decimal(24,6) DEFAULT '0.000000' COMMENT '',
`BeginNeedGet` decimal(24,6) DEFAULT NULL COMMENT '',
`BeginNeedPay` decimal(24,6) DEFAULT NULL COMMENT '',
`AllNeedGet` decimal(24,6) DEFAULT NULL COMMENT '',
`AllNeedPay` decimal(24,6) DEFAULT NULL COMMENT '',
`fax` varchar(30) DEFAULT NULL COMMENT '',
`telephone` varchar(30) DEFAULT NULL COMMENT '',
`address` varchar(50) DEFAULT NULL COMMENT '',
`taxNum` varchar(50) DEFAULT NULL COMMENT '',
`bankName` varchar(50) DEFAULT NULL COMMENT '',
`accountNumber` varchar(50) DEFAULT NULL COMMENT '',
`taxRate` decimal(24,6) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8 COMMENT='/';
-- ----------------------------
-- Records of jsh_supplier
-- ----------------------------
INSERT INTO `jsh_supplier` VALUES ('1', '', '', '', '', '', '1', '', '', '0.000000', null, '20.000000', null, null, '', '', '', '', '', '', '10.000000', null, '0');
INSERT INTO `jsh_supplier` VALUES ('2', 'AAAA', '', '', '', '', '1', '', '', '24.000000', '10.000000', null, null, null, '', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('4', '', '', '13000000000', '312341@qq.com', '55', '1', '', '', '0.000000', null, '44.000000', null, null, '', '', '', '', '', '', '17.000000', null, '0');
INSERT INTO `jsh_supplier` VALUES ('5', 'BBBB', '', '13000000000', '666@qq.com', '', '1', '', '', '36.000000', '20.000000', null, null, null, null, null, null, null, null, null, null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('6', '', '', '1231', '31243@qq.com', '', '1', '', '', '0.000000', '5.000000', null, null, null, '2134', '15678903', '', '', '', '31234124312', '0.170000', null, '0');
INSERT INTO `jsh_supplier` VALUES ('7', '', '', '13000000000', '123456@qq.com', '', '1', '', '', '76.600000', null, null, null, null, null, null, null, null, null, null, null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('8', 'hy00001', '', '13000000000', '', '', '1', '', '', '954.800000', null, null, null, null, '', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('9', 'hy00002', '', '13000000000', '', '', '1', '', '', '344.000000', null, null, null, null, '', '', '', '', '', '', null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('10', '1268787965', '', '82567384', '423@qq.com', '', '1', '', '', '2122.000000', null, null, null, null, '', '13000000001', '', '', '', '', null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('45', '666666666', '', '82567384', '423@qq.com', '', '1', '', '', '2100.000000', '0.000000', '0.000000', '0.000000', '0.000000', '', '13000000001', '', '', '', '', '0.000000', null, '0');
INSERT INTO `jsh_supplier` VALUES ('46', '', '', '', '', '', '1', '', '', '0.000000', null, null, '0.000000', '0.000000', '', '13000000000', '', '', '', '', null, null, '0');
INSERT INTO `jsh_supplier` VALUES ('47', '1', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '1', '0');
INSERT INTO `jsh_supplier` VALUES ('48', '1', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '1', '0');
INSERT INTO `jsh_supplier` VALUES ('49', 'ddddd123', '', '', '', '', null, '', '', '6.000000', null, null, null, null, '', '', '', '', '', '', null, '1', '0');
INSERT INTO `jsh_supplier` VALUES ('50', '2', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '1', '0');
INSERT INTO `jsh_supplier` VALUES ('51', '1', '', '', '', '', null, '', '', '0.000000', null, '2000.000000', null, null, '', '', '', '', '', '', null, '117', '0');
INSERT INTO `jsh_supplier` VALUES ('52', '123', '', '', '', '', null, '', '', '0.000000', '1000.000000', null, null, null, '', '', '', '', '', '', null, '117', '0');
INSERT INTO `jsh_supplier` VALUES ('53', '123123', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '117', '0');
INSERT INTO `jsh_supplier` VALUES ('54', '2222', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '117', '0');
INSERT INTO `jsh_supplier` VALUES ('55', '1', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '115', '0');
INSERT INTO `jsh_supplier` VALUES ('56', '666', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '115', '0');
INSERT INTO `jsh_supplier` VALUES ('57', '1', '', '', '', '', null, '', '', '0.000000', '0.000000', '0.000000', null, '0.000000', '', '', '', '', '', '', '12.000000', '63', '0');
INSERT INTO `jsh_supplier` VALUES ('58', '1', '', '', '', '', null, '', '', '0.000000', '200.000000', '0.000000', '-100.000000', null, '', '', '', '', '', '', null, '63', '0');
INSERT INTO `jsh_supplier` VALUES ('59', 'kh123', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '0');
INSERT INTO `jsh_supplier` VALUES ('60', '12312666', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '0');
INSERT INTO `jsh_supplier` VALUES ('61', '', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', '12312312.000000', '63', '1');
INSERT INTO `jsh_supplier` VALUES ('62', 'if', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '1');
INSERT INTO `jsh_supplier` VALUES ('63', '', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '1');
INSERT INTO `jsh_supplier` VALUES ('64', 'wrwer', '', '', '', '', null, '', '', '0.000000', '0.000000', '0.000000', null, '0.000000', '', '', '', '', '', '', '233.000000', '63', '1');
INSERT INTO `jsh_supplier` VALUES ('65', '123123', '', '', '', '', null, '', '', '0.000000', '0.000000', '0.000000', null, '0.000000', '', '', '', '', '', '', '44.000000', '63', '1');
INSERT INTO `jsh_supplier` VALUES ('66', 'rrtt', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '1');
INSERT INTO `jsh_supplier` VALUES ('67', '2', '', '', '', '', null, '', '', '0.000000', '0.000000', '0.000000', null, '0.000000', '', '', '', '', '', '', '7.000000', '63', '1');
INSERT INTO `jsh_supplier` VALUES ('68', '3', '', '', '', '', null, '', '', '0.000000', '15.000000', '0.000000', null, '-15.000000', '', '13000000000', '', '', '', '', '22.000000', '63', '0');
INSERT INTO `jsh_supplier` VALUES ('69', '', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', '3123.000000', '63', '1');
INSERT INTO `jsh_supplier` VALUES ('70', 'rrrrr', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '1');
INSERT INTO `jsh_supplier` VALUES ('71', 'fsdfasdf', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '0');
INSERT INTO `jsh_supplier` VALUES ('72', 'sdfafadsf', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '1');
INSERT INTO `jsh_supplier` VALUES ('73', 'sadvczXCvz', '', '', '', '', null, '', '', '0.000000', null, null, null, null, '', '', '', '', '', '', null, '63', '1');
-- ----------------------------
-- Table structure for `jsh_systemconfig`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_systemconfig`;
CREATE TABLE `jsh_systemconfig` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`company_name` varchar(50) DEFAULT NULL COMMENT '',
`company_contacts` varchar(20) DEFAULT NULL COMMENT '',
`company_address` varchar(50) DEFAULT NULL COMMENT '',
`company_tel` varchar(20) DEFAULT NULL COMMENT '',
`company_fax` varchar(20) DEFAULT NULL COMMENT '',
`company_post_code` varchar(20) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='';
-- ----------------------------
-- Records of jsh_systemconfig
-- ----------------------------
INSERT INTO `jsh_systemconfig` VALUES ('7', 'jshERP公司', '', '', '0513-10101010', '0513-18181818', '226300', null, '0');
INSERT INTO `jsh_systemconfig` VALUES ('8', '123', '', '', '', '', '', '117', '0');
-- ----------------------------
-- Table structure for `jsh_unit`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_unit`;
CREATE TABLE `jsh_unit` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`UName` varchar(50) DEFAULT NULL COMMENT '',
`tenant_id` bigint(20) DEFAULT NULL COMMENT 'id',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '01',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='';
-- ----------------------------
-- Records of jsh_unit
-- ----------------------------
INSERT INTO `jsh_unit` VALUES ('2', 'kg,(1:25)', null, '0');
INSERT INTO `jsh_unit` VALUES ('8', ',(1:12)', null, '0');
INSERT INTO `jsh_unit` VALUES ('11', 'qwe,sed(1:33)', null, '0');
INSERT INTO `jsh_unit` VALUES ('12', '1,2(1:33)', null, '0');
INSERT INTO `jsh_unit` VALUES ('13', 'aa,vv(1:22)', '1', '0');
INSERT INTO `jsh_unit` VALUES ('14', ',(1:12)', '117', '0');
INSERT INTO `jsh_unit` VALUES ('15', ',(1:12)', '63', '0');
-- ----------------------------
-- Table structure for `jsh_user`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_user`;
CREATE TABLE `jsh_user` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`username` varchar(255) NOT NULL COMMENT '--例如张三',
`loginame` varchar(255) DEFAULT NULL COMMENT '登录用户名--可能为空',
`password` varchar(50) DEFAULT NULL COMMENT '登陆密码',
`position` varchar(200) DEFAULT NULL COMMENT '职位',
`department` varchar(255) DEFAULT NULL COMMENT '所属部门',
`email` varchar(100) DEFAULT NULL COMMENT '电子邮箱',
`phonenum` varchar(100) DEFAULT NULL COMMENT '手机号码',
`ismanager` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否为管理者 0==管理者 1==员工',
`isystem` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否系统自带数据 ',
`Status` tinyint(4) DEFAULT '0' COMMENT '状态0正常1删除2封禁',
`description` varchar(500) DEFAULT NULL COMMENT '用户描述信息',
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=utf8 COMMENT='用户表';
-- ----------------------------
-- Records of jsh_user
-- ----------------------------
INSERT INTO `jsh_user` VALUES ('63', '季圣华', 'jsh', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '1', '0', '', null, '63');
INSERT INTO `jsh_user` VALUES ('64', '张三', 'zs', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('65', '李四', 'ls', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('67', 'fas666', 'asd555', null, 'asdf333', null, '11111@qq.com', '222222', '1', '0', '0', 'sdf0000', null, null);
INSERT INTO `jsh_user` VALUES ('74', '21312sfdfsdf', '1231234', null, '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('84', '123123', 'jsh123', null, '3123', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('86', '2333', 'sdf111aaa', null, '3232', null, '', '32323', '1', '0', '0', '33232', null, null);
INSERT INTO `jsh_user` VALUES ('87', '122123132', 'sdfasd1', null, '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('90', '232343', '233', null, '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('91', 'jsh1231', 'jsh1231', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('92', '213123', 'aaaa', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '1', '', null, null);
INSERT INTO `jsh_user` VALUES ('93', '111', 'ffff', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '1', '', null, null);
INSERT INTO `jsh_user` VALUES ('94', 'sdfsdf', 'fsdfsdsd', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '1', '', null, null);
INSERT INTO `jsh_user` VALUES ('95', '4444444', '4444', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, null);
INSERT INTO `jsh_user` VALUES ('96', 'lili', 'lili', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, '1');
INSERT INTO `jsh_user` VALUES ('113', 'yuyu123', 'yuyu123', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '113');
INSERT INTO `jsh_user` VALUES ('115', 'laoba123', 'laoba123', 'e10adc3949ba59abbe56e057f20f883e', '33333', null, '', '', '1', '0', '0', '', null, '115');
INSERT INTO `jsh_user` VALUES ('116', 'gggg123', 'gggg123', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '1', '', null, '115');
INSERT INTO `jsh_user` VALUES ('120', '管理员', 'admin', 'ef50abc8464aac2ead59f465d1cfc462', null, null, null, null, '1', '0', '0', null, null, null);
INSERT INTO `jsh_user` VALUES ('121', 'hhhh', 'hhhh', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, '115');
INSERT INTO `jsh_user` VALUES ('122', 'admin1', 'admin1', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '1', '', null, '63');
INSERT INTO `jsh_user` VALUES ('123', 'caoyuli', 'caoyuli', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '123');
INSERT INTO `jsh_user` VALUES ('124', 'jchb', 'jchb', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '124');
INSERT INTO `jsh_user` VALUES ('126', '123123', '123123', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '126');
INSERT INTO `jsh_user` VALUES ('127', '2345123', '2345123', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '127');
INSERT INTO `jsh_user` VALUES ('128', 'q12341243', 'q12341243', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '128');
INSERT INTO `jsh_user` VALUES ('130', 'jsh666', 'jsh666', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, '130');
-- ----------------------------
-- Table structure for `jsh_userbusiness`
-- ----------------------------
DROP TABLE IF EXISTS `jsh_userbusiness`;
CREATE TABLE `jsh_userbusiness` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`Type` varchar(50) DEFAULT NULL COMMENT '类别',
`KeyId` varchar(50) DEFAULT NULL COMMENT '主ID',
`Value` varchar(10000) DEFAULT NULL COMMENT '',
`BtnStr` varchar(2000) DEFAULT NULL COMMENT '按钮权限',
`delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记0未删除1删除',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8 COMMENT='用户/角色/模块关系表';
-- ----------------------------
-- Records of jsh_userbusiness
-- ----------------------------
INSERT INTO `jsh_userbusiness` VALUES ('1', 'RoleAPP', '4', '[3][6][7][22][23][24][25][26][27]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('2', 'RoleAPP', '5', '[8][7][6]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('3', 'RoleAPP', '6', '[23][24][25][27][26][22][7][3][6]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('4', 'RoleAPP', '7', '[21][1][8][11]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('5', 'RoleFunctions', '4', '[13][12][16][243][14][15][234][236][22][23][220][240][25][217][218][26][194][195][31][245][59][207][208][209][226][227][228][229][235][237][244][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]', '[{\"funId\":\"25\",\"btnStr\":\"1\"},{\"funId\":\"217\",\"btnStr\":\"1\"},{\"funId\":\"218\",\"btnStr\":\"1\"},{\"funId\":\"241\",\"btnStr\":\"3\"},{\"funId\":\"242\",\"btnStr\":\"3\"}]', '0');
INSERT INTO `jsh_userbusiness` VALUES ('6', 'RoleFunctions', '5', '[22][23][25][26][194][195][31][33][200][201][41][199][202]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('7', 'RoleFunctions', '6', '[22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]', '[{\"funId\":\"33\",\"btnStr\":\"4\"}]', '0');
INSERT INTO `jsh_userbusiness` VALUES ('8', 'RoleAPP', '8', '[21][1][8][11][10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('9', 'RoleFunctions', '7', '[168][13][12][16][14][15][189][18][19][132]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('10', 'RoleFunctions', '8', '[168][13][12][16][14][15][189][18][19][132][22][23][25][26][27][157][158][155][156][125][31][127][126][128][33][34][35][36][37][39][40][41][42][43][46][47][48][49][50][51][52][53][54][55][56][57][192][59][60][61][62][63][65][66][68][69][70][71][73][74][76][77][79][191][81][82][83][85][89][161][86][176][165][160][28][134][91][92][29][94][95][97][104][99][100][101][102][105][107][108][110][111][113][114][116][117][118][120][121][131][135][123][122][20][130][146][147][138][148][149][153][140][145][184][152][143][170][171][169][166][167][163][164][172][173][179][178][181][182][183][186][187]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('11', 'RoleFunctions', '9', '[168][13][12][16][14][15][189][18][19][132][22][23][25][26][27][157][158][155][156][125][31][127][126][128][33][34][35][36][37][39][40][41][42][43][46][47][48][49][50][51][52][53][54][55][56][57][192][59][60][61][62][63][65][66][68][69][70][71][73][74][76][77][79][191][81][82][83][85][89][161][86][176][165][160][28][134][91][92][29][94][95][97][104][99][100][101][102][105][107][108][110][111][113][114][116][117][118][120][121][131][135][123][122][20][130][146][147][138][148][149][153][140][145][184][152][143][170][171][169][166][167][163][164][172][173][179][178][181][182][183][186][187][188]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('12', 'UserRole', '1', '[5]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('13', 'UserRole', '2', '[6][7]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('14', 'UserDepot', '2', '[1][2][6][7]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('15', 'UserDepot', '1', '[1][2][5][6][7][10][12][14][15][17]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('16', 'UserRole', '63', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('18', 'UserDepot', '63', '[14][15]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('19', 'UserDepot', '5', '[6][45][46][50]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('20', 'UserRole', '5', '[5]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('21', 'UserRole', '64', '[13]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('22', 'UserDepot', '64', '[1]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('23', 'UserRole', '65', '[5]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('24', 'UserDepot', '65', '[1]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('25', 'UserCustomer', '64', '[5][2]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('26', 'UserCustomer', '65', '[6]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('27', 'UserCustomer', '63', '[58]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('28', 'UserDepot', '96', '[7]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('29', 'UserRole', '96', '[6]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('30', 'UserRole', '113', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('31', 'RoleAPP', '10', '[3][6][7][22][23][24][25][26][27]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('32', 'RoleFunctions', '10', '[13][243][14][15][234][22][23][220][240][25][217][218][26][194][195][31][245][59][207][208][209][226][227][228][229][235][237][244][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]', '[{\"funId\":\"25\",\"btnStr\":\"1\"},{\"funId\":\"217\",\"btnStr\":\"1\"},{\"funId\":\"218\",\"btnStr\":\"1\"},{\"funId\":\"241\",\"btnStr\":\"3\"},{\"funId\":\"242\",\"btnStr\":\"3\"}]', '0');
INSERT INTO `jsh_userbusiness` VALUES ('34', 'UserRole', '115', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('35', 'UserRole', '117', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('36', 'UserDepot', '117', '[8][9]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('37', 'UserCustomer', '117', '[52]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('38', 'UserRole', '120', '[4]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('39', 'UserDepot', '120', '[7][8][9][10][11][12][2][1][3]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('40', 'UserCustomer', '120', '[52][48][6][5][2]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('41', 'RoleFunctions', '12', '', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('48', 'RoleFunctions', '13', '[59][207][208][209][226][227][228][229][235][237][210][211][241][33][199][242][41][200]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('49', 'RoleAPP', '13', '[22][23][24][25]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('50', 'RoleAPP', '64', '[3]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('51', 'UserRole', '74', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('52', 'UserDepot', '121', '[13]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('53', 'RoleAPP', '121', '[3]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('54', 'UserDepot', '115', '[13]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('55', 'RoleAPP', '115', '[3]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('56', 'UserCustomer', '115', '[56]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('57', 'UserCustomer', '121', '[56]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('58', 'UserRole', '121', '[15]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('59', 'UserRole', '123', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('60', 'UserRole', '124', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('61', 'UserRole', '125', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('62', 'UserRole', '126', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('63', 'UserRole', '127', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('64', 'UserRole', '128', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('65', 'UserRole', '129', '[10]', null, '0');
INSERT INTO `jsh_userbusiness` VALUES ('66', 'UserRole', '130', '[10]', null, '0');
-- ----------------------------
-- Table structure for `tbl_sequence`
-- ----------------------------
DROP TABLE IF EXISTS `tbl_sequence`;
CREATE TABLE `tbl_sequence` (
`seq_name` varchar(50) NOT NULL COMMENT '序列名称',
`min_value` bigint(20) NOT NULL COMMENT '最小值',
`max_value` bigint(20) NOT NULL COMMENT '最大值',
`current_val` bigint(20) NOT NULL COMMENT '当前值',
`increment_val` int(11) NOT NULL DEFAULT '1' COMMENT '增长步数',
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`seq_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='sequence表';
-- ----------------------------
-- Records of tbl_sequence
-- ----------------------------
INSERT INTO `tbl_sequence` VALUES ('depot_number_seq', '1', '999999999999999999', '304', '1', '单据编号sequence');
-- ----------------------------
-- Function structure for `_nextval`
-- ----------------------------
DROP FUNCTION IF EXISTS `_nextval`;
DELIMITER ;;
CREATE DEFINER=`root`@`%` FUNCTION `_nextval`(name varchar(50)) RETURNS mediumtext CHARSET utf8
begin
declare _cur bigint;
declare _maxvalue bigint; -- 接收最大值
declare _increment int; -- 接收增长步数
set _increment = (select increment_val from tbl_sequence where seq_name = name);
set _maxvalue = (select max_value from tbl_sequence where seq_name = name);
set _cur = (select current_val from tbl_sequence where seq_name = name for update);
update tbl_sequence -- 更新当前值
set current_val = _cur + increment_val
where seq_name = name ;
if(_cur + _increment >= _maxvalue) then -- 判断是都达到最大值
update tbl_sequence
set current_val = minvalue
where seq_name = name ;
end if;
return _cur;
end
;;
DELIMITER ;