Commit 63f6438d authored by libin's avatar libin

订单统计

parent 91a2a6b6
...@@ -10,7 +10,7 @@ spring: ...@@ -10,7 +10,7 @@ spring:
datasource: datasource:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.jdbc.Driver driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://10.5.52.4:3307/xxfc_uccn?useUnicode=true&characterEncoding=UTF-8 url: jdbc:mysql://10.5.52.3:3306/xxfc_order?useUnicode=true&characterEncoding=UTF-8
username: root username: root
password: sslcloud123*() password: sslcloud123*()
jackson: jackson:
......
#\u4EE3\u7801\u751F\u6210\u5668\uFF0C\u914D\u7F6E\u4FE1\u606F #\u4EE3\u7801\u751F\u6210\u5668\uFF0C\u914D\u7F6E\u4FE1\u606F
#\u5305\u540D #\u5305\u540D
package=com.xxfc.platform.uccn package=com.xxfc.platform.order
#\u4F5C\u8005 #\u4F5C\u8005
author=libin author=libin
#Email #Email
......
...@@ -31,14 +31,14 @@ public class OrderReceivedStatisticsBase { ...@@ -31,14 +31,14 @@ public class OrderReceivedStatisticsBase {
*/ */
@Column(name = "year") @Column(name = "year")
@ApiModelProperty(value = "年份") @ApiModelProperty(value = "年份")
protected Integer year; protected String year;
/** /**
* 月份 * 月份
*/ */
@Column(name = "month") @Column(name = "month")
@ApiModelProperty(value = "月份") @ApiModelProperty(value = "月份----->201908")
protected Integer month; protected String month;
/** /**
* 年月日 * 年月日
...@@ -51,8 +51,8 @@ public class OrderReceivedStatisticsBase { ...@@ -51,8 +51,8 @@ public class OrderReceivedStatisticsBase {
* 1周年的第几周 * 1周年的第几周
*/ */
@Column(name = "week_of_year") @Column(name = "week_of_year")
@ApiModelProperty(value = "1周年的第几周") @ApiModelProperty(value = "1周年的第几周--->201922")
protected Integer weekOfYear; protected String weekOfYear;
/** /**
* 订单总额 * 订单总额
......
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