Commit 3943485c authored by 黎聪聪's avatar 黎聪聪

订单,订单明细,报表

parent 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
......@@ -79,7 +79,7 @@
<module>workshop-module-web</module>
<module>schaeffler-modules</module>
<module>aidea-modules</module>
<module>reportForm-module</module>
</modules>
<properties>
......
<?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>
<!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>
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment