修复文档

This commit is contained in:
yubaolee 2024-05-22 20:31:27 +08:00
parent ac36928666
commit 43296f3504

View File

@ -49,17 +49,21 @@ initCfg() {
-- mysql示例 -- mysql示例
create table stock create table stock
( (
createtime datetime not null comment '操作时间', Id varchar(50) not null comment '数据ID'
status int not null comment '出库/入库', primary key,
price decimal(10, 1) not null comment '产品单价', Name text not null comment '产品名称',
number int not null comment '产品数量', Number int not null comment '产品数量',
name text not null comment '产品名称', Price decimal(10, 1) not null comment '产品单价',
orgid varchar(50) null comment '组织ID', Status int not null comment '出库/入库',
user varchar(50) not null comment '操作人', Viewable varchar(50) not null comment '可见范围',
viewable varchar(50) not null comment '可见范围', User varchar(50) not null comment '操作人',
id varchar(50) not null comment '数据ID' Time datetime not null comment '操作时间',
primary key OrgId varchar(50) null comment '组织ID'
) )
comment '出入库信息表' charset = utf8
row_format = COMPACT;
``` ```