whyczh
2021-12-15 ad0f314b970b7753660135dd9d459d3d8dffdb05
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package com.whyc.service;
 
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.whyc.dto.Response;
import com.whyc.factory.BattinfGroupFactory;
import com.whyc.mapper.BattInfMapper;
import com.whyc.pojo.Battinf;
import com.whyc.pojo.MapOutline;
import com.whyc.pojo.PowerInf;
import io.swagger.models.auth.In;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.HashMap;
import java.util.List;
 
@Service
public class BattInfService {
    @Resource
    private BattInfMapper battInfMapper;
 
    public int searchMaxBattgroupId_zj(){
        int id = battInfMapper.getMaxBattGroupId_zj();
        return id+1;
    }
 
    public String searchMaxId_zj(){
        int id = Integer.valueOf(battInfMapper.getMaxStationId_zj());
        return (id+1)+"";
    }
 
    public int searchMaxDevId(Integer fbsDeviceId){
        int devId = battInfMapper.getMaxDevId(fbsDeviceId);
        if(devId==0){
            int length = String.valueOf(fbsDeviceId).length();
            switch (length){
                case 3:
                    devId = fbsDeviceId*1000000;break;
                case 4:
                    devId = fbsDeviceId*100000;break;
                case 5:
                    devId = fbsDeviceId*10000;break;
                case 6:
                    devId = fbsDeviceId*1000;break;
                /*case 9100:
                case 9110:
                case 9120:
                case 9605:
                    devId = fbsDeviceId*100000;break;
                case 61850:
                case 71850:
                    devId = fbsDeviceId*10000;break;
                default:
                    devId= fbsDeviceId*100000;break;*/
            }
        }
        devId+=1;
 
        return devId;
    }
 
 
    public Response searchAllStationName1 (Integer uId){
        List<String> list = battInfMapper.getStationName1ByUserId(uId);
        return new Response().set(1,list,"查询成功");
    }
 
    public Response searchAllStationName2 (Integer uId,String stationName1){
        List<String> list = battInfMapper.getStationName2ByUseridAndSt1(uId,stationName1);
        return new Response().set(1,list,"查询成功");
    }
 
    public Response searchAllStationName5 (Integer uId,String stationName1,String stationName2){
        List<String> list = battInfMapper.getStationName5ByUseridAndSt1AndSt2(stationName1,stationName2,uId);
        return new Response().set(1,list,"查询成功");
    }
 
    public Response searchAllStationName(Integer uId,String stationName1,String stationName2,String stationName5){
        List<Battinf> list = battInfMapper.getAllStationName(uId,stationName1,stationName2,stationName5);
        return new Response().set(1,list,"查询成功");
    }
 
 
    public Response searchBattGroupByStationName (Integer uId,String stationName1,String stationName){
        List<Battinf> list = battInfMapper.getBattgroupListByStationNameAndStationName1(uId,stationName1,stationName);
        return new Response().set(1,list,"查询成功");
    }
 
    public Response searchStationNameInGroup(Integer uId,String stationName1){
        List<String> list = battInfMapper.getStationNameInGroup(uId,stationName1);
        return new Response().set(1,list,"查询成功");
    }
 
 
    public Response add(Battinf battinf,Integer userId){
        int battGroupId = searchMaxBattgroupId_zj();//BattinfGroupFactory.searchMaxBattgroupId();
        battinf.setBattGroupId(battGroupId);
        String stationId = searchMaxId_zj();//BattinfGroupFactory.searchStationId();
        battinf.setStationId(stationId);
        int dev_id = searchMaxDevId(battinf.getFBSDeviceId().intValue());
        Battinf bst3 = battInfMapper.judgeBattStationName3(battinf);
        if (bst3!=null){
            battinf.setStationId(bst3.getStationId());
            Battinf bst = battInfMapper.judgeBattStationName(battinf.getStationName(),battinf.getFBSDeviceName());
            if (bst!=null){
                battinf.setFBSDeviceId(bst.getFBSDeviceId());
            }else {
                battinf.setFBSDeviceId((long) dev_id);
            }
        }else {
            battinf.setStationId(stationId);
            battinf.setFBSDeviceId((long) dev_id);
        }
        battInfMapper.insert(battinf);
        battInfMapper.insertUserBattgroupBaojigroupBattgroup(battinf.getStationId(),battinf.getBattGroupId());
        battInfMapper.insertUserBattgroupBaojigroupBattgroupSelect(battinf.getStationId(),battinf.getBattGroupId(),userId);
        return new Response().set(1,battinf,"添加成功");
    }
 
    public Response searchInfo(int pageNum,int pageSize,Integer userId,String stationName1,String stationName2,String stationName5,String stationName3){
        PageHelper.startPage(pageNum,pageSize);
        List<Battinf> list = battInfMapper.searchInform(userId, stationName1, stationName2,stationName5, stationName3);
        PageInfo<Battinf> pageInfo = new PageInfo<>(list);
        return new Response().set(1,pageInfo,"查询成功");
    }
 
    public void deleteByBattgroupId(Integer battgroupId){
        QueryWrapper<Battinf> wrapper = new QueryWrapper<Battinf>().eq("battgroupId",battgroupId);
        battInfMapper.delete(wrapper);
    }
 
    public Response update(Battinf battinf){
        if (battInfMapper.updateById(battinf)>0){
            return new Response().set(1,"更新成功");
        }else {
            return new Response().set(0,"更新失败");
        }
    }
 
    public Response updateIp(Battinf battinf){
        UpdateWrapper<Battinf> updateWrapper = new UpdateWrapper<Battinf>();
        updateWrapper.eq("FBSDeviceId",battinf.getFBSDeviceId());
        int affectRows = battInfMapper.update(battinf,updateWrapper);
        if (affectRows>0){
            return new Response().set(1,true,"更新成功");
        }else {
            return new Response().set(1,false,"更新失败");
        }
    }
 
    public Response searchBattProducer(){
        List<String> list = battInfMapper.getAllBattProducer();
        return new Response().set(1,list);
    }
 
    public Response updatePublicKeyByDevId(String publicKey,Integer deviceId){
        if(battInfMapper.updatePublicKeyByDevId(publicKey,deviceId)>0){
            return new Response().set(1,true,"更新成功");
        }else {
            return new Response().set(1,false,"更新失败");
        }
    }
 
 
 
    public void addBatch(List<Battinf> battInfList){
        battInfMapper.insertBatchSomeColumn(battInfList);
    }
 
 
    public List<Battinf> getStationList(int userId) {
        return battInfMapper.getStationList(userId);
    }
 
 
    public Response searchNotInBattMapByUid(int uId){
        List<Battinf> list = battInfMapper.searchNotInBattMapByUid(uId);
        return new Response().set(1,list,"查询成功");
    }
 
    public List<Battinf> getBattGroupInfoByFBSDeviceId(int fbsDeviceId) {
        QueryWrapper<Battinf> queryWrapper = Wrappers.query();
        queryWrapper.select("BattGroupId","BattGroupName").eq("FBSDeviceId",fbsDeviceId);
        return battInfMapper.selectList(queryWrapper);
    }
 
    public Response findUseYear(int uId){
        HashMap<String,Integer> map = new HashMap<>();
        int yearBelowThree = 0;
        int yearBetweenThreeAndFive = 0;
        int yearBetweenFiveAndSeven = 0;
        int yearAboveSeven = 0;
        List<Integer> list = battInfMapper.findUseYear(uId);
        //查询3年内,3-5年,5-7年,7年以上,含头不含尾
        for (int year:list){
            if(year<3){
                yearBelowThree+=1;
            }else if(year<5){
                yearBetweenThreeAndFive+=1;
            }else if(year<7){
                yearBetweenFiveAndSeven+=1;
            }else{
                yearAboveSeven+=1;
            }
        }
        map.put("3年内",yearBelowThree);
        map.put("3-5年",yearBetweenThreeAndFive);
        map.put("5-7年",yearBetweenFiveAndSeven);
        map.put("7年以上",yearAboveSeven);
        return new Response().set(1,map,"查询成功");
    }
 
    public Response findBattProducer(int uId){
        List<Battinf> list = battInfMapper.findBattProducer(uId);
        return new Response().set(1,list,"查询成功");
    }
 
}