wuxw
2021-04-23 e9be8d15ab3ee20685793e16071c56485b32e33a
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.java110.api.bmo.machine.impl;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.api.bmo.ApiBaseBMO;
import com.java110.api.bmo.machine.IMachineBMO;
import com.java110.core.context.DataFlowContext;
import com.java110.core.factory.GenerateCodeFactory;
import com.java110.dto.machine.MachineDto;
import com.java110.intf.common.IMachineInnerServiceSMO;
import com.java110.po.machine.MachinePo;
import com.java110.utils.constant.BusinessTypeConstant;
import com.java110.utils.util.Assert;
import com.java110.utils.util.BeanConvertUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @ClassName MachineBMOImpl
 * @Description TODO
 * @Author wuxw
 * @Date 2020/3/9 22:46
 * @Version 1.0
 * add by wuxw 2020/3/9
 **/
@Service("machineBMOImpl")
public class MachineBMOImpl extends ApiBaseBMO implements IMachineBMO {
    @Autowired
    private IMachineInnerServiceSMO machineInnerServiceSMOImpl;
 
    /**
     * 添加小区信息
     *
     * @param paramInJson     接口调用放传入入参
     * @param dataFlowContext 数据上下文
     * @return 订单服务能够接受的报文
     */
    public void deleteMachine(JSONObject paramInJson, DataFlowContext dataFlowContext) {
 
        MachinePo machinePo = BeanConvertUtil.covertBean(paramInJson, MachinePo.class);
        super.delete(dataFlowContext, machinePo, BusinessTypeConstant.BUSINESS_TYPE_DELETE_MACHINE);
    }
 
    /**
     * 添加小区信息
     *
     * @param paramInJson     接口调用放传入入参
     * @param dataFlowContext 数据上下文
     * @return 订单服务能够接受的报文
     */
    public void addMachine(JSONObject paramInJson, DataFlowContext dataFlowContext) {
 
        JSONObject businessMachine = new JSONObject();
        businessMachine.putAll(paramInJson);
        businessMachine.put("state", "1000");
        businessMachine.put("machineId", GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_machineId));
        //计算 应收金额
 
        MachinePo machinePo = BeanConvertUtil.covertBean(businessMachine, MachinePo.class);
        super.insert(dataFlowContext, machinePo, BusinessTypeConstant.BUSINESS_TYPE_SAVE_MACHINE);
        paramInJson.put("machineId", businessMachine.getString("machineId"));
 
    }
 
    /**
     * 添加设备信息
     *
     * @param paramInJson     接口调用放传入入参
     * @param dataFlowContext 数据上下文
     * @return 订单服务能够接受的报文
     */
    public void updateMachine(JSONObject paramInJson, DataFlowContext dataFlowContext) {
 
        JSONObject businessMachine = new JSONObject();
        businessMachine.putAll(paramInJson);
        businessMachine.put("state", "1000");
        //计算 应收金额
        MachinePo machinePo = BeanConvertUtil.covertBean(businessMachine, MachinePo.class);
        super.update(dataFlowContext, machinePo, BusinessTypeConstant.BUSINESS_TYPE_UPDATE_MACHINE);
    }
 
    /**
     * 添加设备信息
     *
     * @param paramInJson     接口调用放传入入参
     * @param dataFlowContext 数据上下文
     * @return 订单服务能够接受的报文
     */
    public void updateMachineState(JSONObject paramInJson, DataFlowContext dataFlowContext) {
 
        MachineDto machineDto = new MachineDto();
        machineDto.setCommunityId(paramInJson.getString("communityId"));
        machineDto.setMachineId(paramInJson.getString("machineId"));
        List<MachineDto> machineDtos = machineInnerServiceSMOImpl.queryMachines(machineDto);
 
        Assert.listOnlyOne(machineDtos, "根据设备编码查询到多条记录,请检查数据");
        JSONObject businessMachine = new JSONObject();
        businessMachine.putAll(BeanConvertUtil.beanCovertMap(machineDtos.get(0)));
        businessMachine.put("state", paramInJson.getString("state"));
        //计算 应收金额
        MachinePo machinePo = BeanConvertUtil.covertBean(businessMachine, MachinePo.class);
        super.update(dataFlowContext, machinePo, BusinessTypeConstant.BUSINESS_TYPE_UPDATE_MACHINE);
 
    }
}