Commit 63f6438d authored by libin's avatar libin

订单统计

parent 91a2a6b6
......@@ -10,7 +10,7 @@ spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
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
password: sslcloud123*()
jackson:
......
#\u4EE3\u7801\u751F\u6210\u5668\uFF0C\u914D\u7F6E\u4FE1\u606F
#\u5305\u540D
package=com.xxfc.platform.uccn
package=com.xxfc.platform.order
#\u4F5C\u8005
author=libin
#Email
......
......@@ -31,14 +31,14 @@ public class OrderReceivedStatisticsBase {
*/
@Column(name = "year")
@ApiModelProperty(value = "年份")
protected Integer year;
protected String year;
/**
* 月份
*/
@Column(name = "month")
@ApiModelProperty(value = "月份")
protected Integer month;
@ApiModelProperty(value = "月份----->201908")
protected String month;
/**
* 年月日
......@@ -51,8 +51,8 @@ public class OrderReceivedStatisticsBase {
* 1周年的第几周
*/
@Column(name = "week_of_year")
@ApiModelProperty(value = "1周年的第几周")
protected Integer weekOfYear;
@ApiModelProperty(value = "1周年的第几周--->201922")
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