Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
Aidea
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sa_aidea
Aidea
Commits
3943485c
Commit
3943485c
authored
Oct 19, 2020
by
黎聪聪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单,订单明细,报表
parent
e28a69d8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
81 deletions
+1
-81
order.sql
aidea-modules/order-module/src/sqls/order/order.sql
+0
-1
pom.xml
pom.xml
+1
-1
pom.xml
reportForm-module/pom.xml
+0
-67
web.xml
reportForm-module/src/main/webapp/WEB-INF/web.xml
+0
-7
index.jsp
reportForm-module/src/main/webapp/index.jsp
+0
-5
No files found.
aidea-modules/order-module/src/sqls/order/order.sql
deleted
100644 → 0
View file @
e28a69d8
CREATE
TABLE
`t_order`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键id'
,
`consult_id`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'咨询单id'
,
`number`
varchar
(
50
)
NULL
DEFAULT
NULL
COMMENT
'咨询单编码'
,
`member_id`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'所属会员id'
,
`service_id`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'客服id'
,
`doctor_id`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'医生id'
,
`openid`
varchar
(
100
)
NULL
DEFAULT
NULL
COMMENT
'用户所属公众号id'
,
`pay_status`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'付款状态 0未付款 1已付款'
,
`pay_amount`
varchar
(
20
)
NULL
DEFAULT
NULL
COMMENT
'付款金额'
,
`order_amount`
varchar
(
20
)
NULL
DEFAULT
NULL
COMMENT
'订单金额'
,
`total_amount`
varchar
(
20
)
NULL
DEFAULT
NULL
COMMENT
'商品最终金额'
,
`pay_time`
varchar
(
20
)
NULL
DEFAULT
NULL
COMMENT
'付款时间'
,
`trade_no`
varchar
(
50
)
NULL
DEFAULT
NULL
COMMENT
'交易号 支付宝/第三方平台 返回订单号'
,
`remarks`
varchar
(
100
)
NULL
DEFAULT
NULL
COMMENT
'卖家备注'
,
`order_cancel`
varchar
(
100
)
NULL
DEFAULT
NULL
COMMENT
'订单取消原因'
,
`accounts_id`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'所属的账号'
,
`del_flag`
tinyint
(
4
)
NOT
NULL
DEFAULT
0
COMMENT
'删除标识'
,
`status`
varchar
(
10
)
NULL
DEFAULT
'0'
COMMENT
'状态'
,
`create_time`
datetime
NULL
DEFAULT
CURRENT_TIMESTAMP
COMMENT
'创建时间'
,
`update_time`
datetime
NULL
ON
UPDATE
CURRENT_TIMESTAMP
COMMENT
'更新时间'
,
`description`
varchar
(
100
)
NULL
DEFAULT
NULL
COMMENT
'备注'
,
`create_by`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'创建人'
,
`update_by`
bigint
(
20
)
NULL
DEFAULT
NULL
COMMENT
'更新人'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
1
DEFAULT
CHARSET
=
utf8
COMMENT
=
'订单管理表'
;
\ No newline at end of file
pom.xml
View file @
3943485c
...
...
@@ -79,7 +79,7 @@
<module>
workshop-module-web
</module>
<module>
schaeffler-modules
</module>
<module>
aidea-modules
</module>
<module>
reportForm-module
</module>
</modules>
<properties>
...
...
reportForm-module/pom.xml
deleted
100644 → 0
View file @
e28a69d8
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.cftech
</groupId>
<artifactId>
reportForm-module
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<packaging>
war
</packaging>
<name>
reportForm-module Maven Webapp
</name>
<!-- FIXME change it to the project's website -->
<url>
http://www.example.com
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<maven.compiler.source>
1.7
</maven.compiler.source>
<maven.compiler.target>
1.7
</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.11
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<finalName>
reportForm-module
</finalName>
<pluginManagement>
<!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<plugins>
<plugin>
<artifactId>
maven-clean-plugin
</artifactId>
<version>
3.1.0
</version>
</plugin>
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
<plugin>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
3.0.2
</version>
</plugin>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.0
</version>
</plugin>
<plugin>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.22.1
</version>
</plugin>
<plugin>
<artifactId>
maven-war-plugin
</artifactId>
<version>
3.2.2
</version>
</plugin>
<plugin>
<artifactId>
maven-install-plugin
</artifactId>
<version>
2.5.2
</version>
</plugin>
<plugin>
<artifactId>
maven-deploy-plugin
</artifactId>
<version>
2.8.2
</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
reportForm-module/src/main/webapp/WEB-INF/web.xml
deleted
100644 → 0
View file @
e28a69d8
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>
Archetype Created Web Application
</display-name>
</web-app>
reportForm-module/src/main/webapp/index.jsp
deleted
100644 → 0
View file @
e28a69d8
<html>
<body>
<h2>
Hello World!
</h2>
</body>
</html>
Write
Preview
Markdown
is supported
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