-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
hubin6
committed
Oct 30, 2017
1 parent
19b22f1
commit abbc255
Showing
49 changed files
with
272 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ava/com/fresh/commons/data/page/Page.java → ...gistics/cloud/data/commons/page/Page.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../fresh/commons/data/page/PageRequest.java → .../cloud/data/commons/page/PageRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...fresh/commons/data/validation/Errors.java → ...cloud/data/commons/validation/Errors.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
dashboard-domain-service/src/main/java/com/jd/logistics/cloud/data/domain/BoxRes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.jd.logistics.cloud.data.domain; | ||
|
||
import lombok.Data; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @Author hubin | ||
* @Description: | ||
* @Date 2017/10/30 14:00 | ||
*/ | ||
@Data | ||
public class BoxRes implements Serializable{ | ||
private static final long serialVersionUID = -4464992698082552989L; | ||
private String funcName; | ||
private String funcValue; | ||
private String f1Name; | ||
private double f1Value; | ||
private String f2Name; | ||
private double f2Value; | ||
|
||
public BoxRes(String funcName, String funcValue, String f1Name, double f1Value, String f2Name, double f2Value) { | ||
this.funcName = funcName; | ||
this.funcValue = funcValue; | ||
this.f1Name = f1Name; | ||
this.f1Value = f1Value; | ||
this.f2Name = f2Name; | ||
this.f2Value = f2Value; | ||
} | ||
} |
95 changes: 95 additions & 0 deletions
95
dashboard-domain-service/src/main/java/com/jd/logistics/cloud/data/domain/ChartRes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package com.jd.logistics.cloud.data.domain; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
/** | ||
* @Author hubin | ||
* @Description: | ||
* @Date 2017/10/30 14:01 | ||
*/ | ||
public class ChartRes implements Serializable{ | ||
private static final long serialVersionUID = 2435137108243857196L; | ||
private String funcName; | ||
private String funcValue; | ||
private String f1Name; | ||
private double f1Value; | ||
private String f2Name; | ||
private double f2Value; | ||
private List<String> periods; | ||
private String c1Name; | ||
private List<Double> c1Value; | ||
private String c2Name; | ||
private List<Double> c2Value; | ||
|
||
public String getFuncName() { | ||
return funcName; | ||
} | ||
|
||
public String getFuncValue() { | ||
return funcValue; | ||
} | ||
|
||
public String getF1Name() { | ||
return f1Name; | ||
} | ||
|
||
public double getF1Value() { | ||
return f1Value; | ||
} | ||
|
||
public String getF2Name() { | ||
return f2Name; | ||
} | ||
|
||
public double getF2Value() { | ||
return f2Value; | ||
} | ||
|
||
public List<String> getPeriods() { | ||
return periods; | ||
} | ||
|
||
public void setPeriods(List<String> periods) { | ||
this.periods = periods; | ||
} | ||
|
||
public void setC1Value(List<Double> c1Value) { | ||
this.c1Value = c1Value; | ||
} | ||
|
||
public void setC2Value(List<Double> c2Value) { | ||
this.c2Value = c2Value; | ||
} | ||
|
||
|
||
|
||
public List<Double> getC1Value() { | ||
return c1Value; | ||
} | ||
|
||
|
||
|
||
public List<Double> getC2Value() { | ||
return c2Value; | ||
} | ||
|
||
public String getC1Name() { | ||
return c1Name; | ||
} | ||
|
||
public String getC2Name() { | ||
return c2Name; | ||
} | ||
|
||
public ChartRes(String funcName, String funcValue, String f1Name, double f1Value, String f2Name, double f2Value, String c1Name, String c2Name) { | ||
this.funcName = funcName; | ||
this.funcValue = funcValue; | ||
this.f1Name = f1Name; | ||
this.f1Value = f1Value; | ||
this.f2Name = f2Name; | ||
this.f2Value = f2Value; | ||
this.c1Name = c1Name; | ||
this.c2Name = c2Name; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...esh/hydra/center/biz/user/domain/Col.java → ...m/jd/logistics/cloud/data/domain/Col.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.fresh.hydra.center.biz.user.domain; | ||
package com.jd.logistics.cloud.data.domain; | ||
|
||
import lombok.Data; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...sh/hydra/center/biz/user/domain/Stat.java → .../jd/logistics/cloud/data/domain/Stat.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...dra/center/biz/user/domain/StatQuery.java → ...ogistics/cloud/data/domain/StatQuery.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.fresh.hydra.center.biz.user.domain; | ||
package com.jd.logistics.cloud.data.domain; | ||
|
||
import lombok.Data; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...nter/biz/user/service/GenStatService.java → ...cs/cloud/data/service/GenStatService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CREATE TABLE IF NOT EXISTS T_USER( | ||
ID INT NOT NULL AUTO_INCREMENT, | ||
USERNAME VARCHAR(100) NOT NULL, | ||
PASSWORD VARCHAR(100) NOT NULL, | ||
PRIMARY KEY ( ID ) | ||
); | ||
|
||
|
||
INSERT INTO T_USER (USERNAME, PASSWORD) VALUES ('Jack', 'AAAAAAAA'); | ||
INSERT INTO T_USER (USERNAME, PASSWORD) VALUES ('Jones', 'BBBBBBBB'); |
File renamed without changes.
Oops, something went wrong.