Skip to content

Commit cbe0c75

Browse files
committed
trade
1 parent 76b306e commit cbe0c75

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

stock-service/src/main/java/vip/linhs/stock/api/request/CrSubmitBatTradeV2Request.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,6 @@ public CrSubmitBatTradeV2Request(int userId) {
77
}
88

99
public static class CrSubmitData extends SubmitData {
10-
11-
private String Xyjylx = "6";
12-
13-
public String getXyjylx() {
14-
return Xyjylx;
15-
}
16-
17-
public void setXyjylx(String xyjylx) {
18-
Xyjylx = xyjylx;
19-
}
20-
2110
}
2211

2312
@Override

stock-service/src/main/java/vip/linhs/stock/api/request/SubmitBatTradeV2Request.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public static class SubmitData {
1818
private int Amount;
1919
private String TradeType;
2020
private String Market;
21+
private String Xyjylx = "6";
2122

2223
public String getStockCode() {
2324
return StockCode;
@@ -67,6 +68,14 @@ public void setMarket(String market) {
6768
Market = market;
6869
}
6970

71+
public String getXyjylx() {
72+
return Xyjylx;
73+
}
74+
75+
public void setXyjylx(String xyjylx) {
76+
Xyjylx = xyjylx;
77+
}
78+
7079
}
7180

7281
@Override

stock-service/src/main/java/vip/linhs/stock/web/controller/TradeController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ public CommonResponse queryVerifyCodeUrl() {
7171
@PostMapping("login")
7272
public CommonResponse login(int userId, String password, String identifyCode, String randNum) {
7373
AuthenticationRequest request = new AuthenticationRequest(userId);
74-
// password = "UxvVPgyg3CPqWfeDWKkPUEcuWVcNZYXCGXsKcMdOxccJ294Mr0ATkxAnnCONS24+4l2+dclRcSzR3dLXz2H/oSzXQ0PG6Sxaa0zAw1jNR2oiSH+ORbQhK76LStdeYdxwV5gsZd0KuwC+ugqXmEM9lN7ODw7kW3Bjc8ybRoV5hQI=";
7574
request.setPassword(password);
7675
request.setIdentifyCode(identifyCode);
7776
request.setRandNumber(randNum);

0 commit comments

Comments
 (0)