Clean repo

This commit is contained in:
wqy
2022-08-27 11:54:33 +08:00
parent ad60cf262e
commit 690e924dfd
73 changed files with 0 additions and 41 deletions

Binary file not shown.

View File

@@ -1,5 +0,0 @@
1、问题描述
在卸载office等应用或电脑崩溃后会出现缺VCRUNTIME140_1.dll的情况
2、解决方法
64位的电脑把“VCRUNTIME140_1.dll”文件放到“C:\Windows\System32”文件夹里即可
32位的电脑把“VCRUNTIME140_1.dll”文件放到“C:\Windows\SysWOW64”文件夹里即可

Binary file not shown.

Binary file not shown.

0
a.rpt
View File

View File

0
n1.rpt
View File

View File

View File

View File

View File

@@ -1,36 +0,0 @@
drop table if exists Link;
drop table if exists Node;
drop type if exists EN_NodeType;
create type EN_NodeType as enum (
'EN_JUNCTION',
'EN_RESERVOIR',
'EN_TANK'
);
drop type if exists EN_LinkType;
create type EN_LinkType as enum (
'EN_CVPIPE',
'EN_PIPE',
'EN_PUMP',
'EN_PRV',
'EN_PSV',
'EN_PBV',
'EN_FCV',
'EN_TCV',
'EN_GPV'
);
create table Node (
Id varchar(32) primary key,
Type EN_NodeType not null,
Coord point not null default(point(0.0, 0.0)),
Elevation numeric not null default(0.0)
);
create table Link (
Id varchar(32) primary key,
Type EN_LinkType not null,
FromNode varchar(32) not null references Node(Id),
ToNode varchar(32) not null references Node(Id)
);