左晓为主开发手持机充值管理机
zuoxiao
2024-08-09 9450bcb197c2de53982368d5c2059b31abed3b87
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.dayu.qiheonlinelibrary.bean;
 
import java.util.List;
 
/**
 * author: zuo
 * Date: 2024-07-30
 * Time: 16:06
 * 备注:
 */
public class LoginResult {
    //{"code":"0","msg":"操作成功","data":{"chargeMethod":"","iccardCancelTime":"","lastRechargeTime":"2024-08-05 17:04:15","thisSaleMoney":"","totalRechargeWaterAmount":0.00,"iccardBalanceAmonunt":0.00,"iccardInfoId":"1820385315354320898","iccardProtocolName":"","totalRechargeElectricAmount":0.00,"logicState":1,"username":"","state":1,"familySize":"","yearRechargeMoney":0.00,"thisSaleAmount":"","onlyRechargeMoney":"","identityCard":"","iccardBrand":"","iccardBalanceMoney":0.00,"openOperatorUsername":"","adName":"","rechargeWaterAmount":"","openOperatorUserId":"1816297106145103873","lastSwipeTime":"","address":"","yearCompensateMoney":0.00,"iccardProtocolOpenMoney":"","peasantId":"1820374742679953410","reissueTimes":0,"iccardProtocolReissueMoney":"","iccardProtocolId":"","yearRechargeWaterAmount":0.00,"iccardBalanceElectric":0.00,"iccardStatus":0,"phone":"","lastRechargeMoney":0.00,"iccardOpenTime":"","yearRechargeElectricAmount":0.00,"reissueRechargeRecordId":"","iccardPrice":1.50,"iccardNum":"3714251023011","accountType":0,"equipCode":"","rechargeWaterMoney":"","totalRechargeMoney":0.00,"executeWaterPrice":"","iccardType":1,"iccardCode":"BADA4044"}}
 
 
    OtherData otherData;
 
    public OtherData getOtherData() {
        return otherData;
    }
 
    public void setOtherData(OtherData otherData) {
        this.otherData = otherData;
    }
 
    public class OtherData {
        List<String> adcdList;//该用户的地址编码
        String tenantAdnm;//县名称
        List<String> adnmList;//村委会名称
 
        public List<String> getAdcdList() {
            return adcdList;
        }
 
        public void setAdcdList(List<String> adcdList) {
            this.adcdList = adcdList;
        }
 
        public String getTenantAdnm() {
            return tenantAdnm;
        }
 
        public void setTenantAdnm(String tenantAdnm) {
            this.tenantAdnm = tenantAdnm;
        }
 
        public List<String> getAdnmList() {
            return adnmList;
        }
 
        public void setAdnmList(List<String> adnmList) {
            this.adnmList = adnmList;
        }
    }
 
 
}