修改返利

master
lvxinran 2021-08-05 15:10:53 +08:00
parent 1897e92afb
commit e63b01758f
1 changed files with 3 additions and 0 deletions

View File

@ -240,6 +240,9 @@ public class GmController {
String str;
while ((str = in.readLine()) != null) {
String[] s = str.split("\t");
if(s[0].charAt(s[0].length()-1)==' '){
s[0] = s[0].substring(0,s[0].length()-1);
}
RechargeInfo rechargeInfo = new RechargeInfo(s[0], Double.valueOf(s[1]), 0);
String json = gson.toJson(rechargeInfo);
System.out.println(s[0]+"||"+s[1]);