java110
2021-10-07 ca3473a3e803c5c77e93f6671f36637813f5c951
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.java110.job.adapt.fee;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.entity.order.Business;
import com.java110.job.adapt.DatabusAdaptImpl;
import com.java110.job.adapt.fee.asyn.IUpdateFeeOwnerInfo;
import com.java110.po.owner.OwnerPo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import java.util.List;
 
/**
 * 修改业主时 刷新费用信息
 *
 * @ClassName UpdateFeeOwnerInfoAdapt
 * @Description TODO
 * @Author wuxw
 * @Date 2021/10/7 20:50
 * @Version 1.0
 * add by wuxw 2021/10/7
 **/
@Component(value = "updateFeeOwnerInfoAdapt")
public class UpdateFeeOwnerInfoAdapt extends DatabusAdaptImpl {
 
 
    @Autowired
    private IUpdateFeeOwnerInfo updateFeeOwnerInfoImpl;
 
    /**
     * accessToken={access_token}
     * &extCommunityUuid=01000
     * &extCommunityId=1
     * &devSn=111111111
     * &name=设备名称
     * &positionType=0
     * &positionUuid=1
     *
     * @param business   当前处理业务
     * @param businesses 所有业务信息
     */
    @Override
    public void execute(Business business, List<Business> businesses) {
        JSONObject data = business.getData();
        if (data.containsKey(OwnerPo.class.getSimpleName())) {
            Object bObj = data.get(OwnerPo.class.getSimpleName());
            JSONArray businessMachines = null;
            if (bObj instanceof JSONObject) {
                businessMachines = new JSONArray();
                businessMachines.add(bObj);
            } else if (bObj instanceof List) {
                businessMachines = JSONArray.parseArray(JSONObject.toJSONString(bObj));
            } else {
                businessMachines = (JSONArray) bObj;
            }
            for (int bOwnerIndex = 0; bOwnerIndex < businessMachines.size(); bOwnerIndex++) {
                JSONObject businessOwner = businessMachines.getJSONObject(bOwnerIndex);
                doOwnerInfo(business, businessOwner);
            }
        }
    }
 
    private void doOwnerInfo(Business business, JSONObject businessOwner) {
 
        updateFeeOwnerInfoImpl.doUpdate(business, businessOwner);
 
 
    }
 
}