Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
74ee26f9
Commit
74ee26f9
authored
Nov 29, 2019
by
季圣华
Browse files
更新sql
parent
05858c6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/jsh_erp.sql
View file @
74ee26f9
...
@@ -1269,6 +1269,20 @@ INSERT INTO `jsh_materialproperty` VALUES ('4', '自定义1', '\0', '04', '自
...
@@ -1269,6 +1269,20 @@ INSERT INTO `jsh_materialproperty` VALUES ('4', '自定义1', '\0', '04', '自
INSERT
INTO
`jsh_materialproperty`
VALUES
(
'5'
,
'自定义2'
,
'
\0
'
,
'05'
,
'自定义2'
,
'0'
);
INSERT
INTO
`jsh_materialproperty`
VALUES
(
'5'
,
'自定义2'
,
'
\0
'
,
'05'
,
'自定义2'
,
'0'
);
INSERT
INTO
`jsh_materialproperty`
VALUES
(
'6'
,
'自定义3'
,
'
\0
'
,
'06'
,
'自定义3'
,
'0'
);
INSERT
INTO
`jsh_materialproperty`
VALUES
(
'6'
,
'自定义3'
,
'
\0
'
,
'06'
,
'自定义3'
,
'0'
);
-- ----------------------------
-- Table structure for jsh_material_stock
-- ----------------------------
DROP
TABLE
IF
EXISTS
`jsh_material_stock`
;
CREATE
TABLE
`jsh_material_stock`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键'
,
`material_id`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'产品id'
,
`depot_id`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'仓库id'
,
`number`
decimal
(
24
,
6
)
DEFAULT
NULL
COMMENT
'初始库存数量'
,
`tenant_id`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'租户id'
,
`delete_fag`
varchar
(
1
)
DEFAULT
'0'
COMMENT
'删除标记,0未删除,1删除'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
119
DEFAULT
CHARSET
=
utf8
ROW_FORMAT
=
COMPACT
COMMENT
=
'产品初始库存'
;
-- ----------------------------
-- ----------------------------
-- Table structure for jsh_organization
-- Table structure for jsh_organization
-- ----------------------------
-- ----------------------------
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment