|
@@ -2,19 +2,27 @@ package com.bz.smart_city.service.impl.pay;
|
|
|
|
|
|
import com.bz.smart_city.commom.exception.ServiceException;
|
|
|
import com.bz.smart_city.commom.model.Pagination;
|
|
|
-import com.bz.smart_city.commom.model.ResultStatus;
|
|
|
import com.bz.smart_city.commom.util.UserUtil;
|
|
|
+import com.bz.smart_city.dao.pay.AmountWaterUsedAmountMapper;
|
|
|
import com.bz.smart_city.dao.pay.PaySysDictMapper;
|
|
|
import com.bz.smart_city.dto.LoginUser;
|
|
|
+import com.bz.smart_city.dto.pay.MeterReadRecordDto;
|
|
|
import com.bz.smart_city.dto.pay.PaySysDictSelectDto;
|
|
|
import com.bz.smart_city.entity.pay.PaySysDict;
|
|
|
import com.bz.smart_city.service.pay.PaySysDictService;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.data.mongodb.core.MongoTemplate;
|
|
|
+import org.springframework.data.mongodb.core.query.Criteria;
|
|
|
+import org.springframework.data.mongodb.core.query.Query;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import java.time.format.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.math.BigInteger;
|
|
|
import java.time.LocalDateTime;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
@@ -26,6 +34,11 @@ public class PaySysDictServiceImpl implements PaySysDictService {
|
|
|
@Resource
|
|
|
PaySysDictMapper paySysDictMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private MongoTemplate mongoTemplate;
|
|
|
+ @Resource
|
|
|
+ private AmountWaterUsedAmountMapper amountWaterUsedAmountMapper;
|
|
|
+
|
|
|
@Override
|
|
|
public Pagination<PaySysDictSelectDto> getAll(String value, String label ,String type, int pageNum, int pageSize)
|
|
|
{
|
|
@@ -73,10 +86,58 @@ public class PaySysDictServiceImpl implements PaySysDictService {
|
|
|
public List<String> findAllType()
|
|
|
{
|
|
|
LoginUser loginUser = UserUtil.getCurrentUser();
|
|
|
+
|
|
|
+ //测试
|
|
|
+ loginUser.setCustomerId(11);
|
|
|
+
|
|
|
BigInteger customerId = new BigInteger(String.valueOf(loginUser.getCustomerId()));
|
|
|
BigInteger siteId = new BigInteger(String.valueOf(loginUser.getSiteId()));
|
|
|
|
|
|
List<String> stringList = paySysDictMapper.findAllType(siteId,customerId);
|
|
|
+ //----------测试mongotemp------------<
|
|
|
+ Query query = new Query();
|
|
|
+
|
|
|
+ HashMap<BigInteger, MeterReadRecordDto> meterReadRecordHashMap = new HashMap<>();
|
|
|
+
|
|
|
+ DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyyMMdd");
|
|
|
+ LocalDateTime time = LocalDateTime.now();
|
|
|
+ time = time.plusDays(-1);
|
|
|
+ String localTime = "20200531";//df.format(time);
|
|
|
+ Integer readDate = new Integer(localTime);
|
|
|
+
|
|
|
+ Integer sd = new Integer(1);
|
|
|
+ Integer cd = new Integer(3);;
|
|
|
+ Criteria criteria = new Criteria();
|
|
|
+ criteria.and("readDate").is(readDate);
|
|
|
+ criteria.and("siteId").is(sd);
|
|
|
+ criteria.and("customerId").is(cd);
|
|
|
+ //Criteria selCtr = Criteria.where("readDate").is(20200531);
|
|
|
+
|
|
|
+ //in操作
|
|
|
+ ArrayList<String> listVa = new ArrayList<>();
|
|
|
+/* listVa.add(new BigInteger("705506563531603968"));
|
|
|
+ listVa.add(new BigInteger("705506562667577344"));
|
|
|
+ listVa.add(new BigInteger("705505954141175808"));*/
|
|
|
+ listVa.add("004a7701240164e8");
|
|
|
+ listVa.add("004a770124013b39");
|
|
|
+ Criteria inCtr = Criteria.where("deviceNo").all().in(listVa);
|
|
|
+
|
|
|
+ //Criteria inCtr = Criteria.where("deviceId").in("705506563531603968","705506562667577344");
|
|
|
+ query.addCriteria(criteria);
|
|
|
+ query.addCriteria(inCtr);
|
|
|
+ query.fields().include("deviceId");
|
|
|
+ query.fields().include("readDate");
|
|
|
+ query.fields().include("readData");
|
|
|
+ query.fields().exclude("_id");
|
|
|
+
|
|
|
+
|
|
|
+ List<MeterReadRecordDto> childMap = mongoTemplate.find(query,MeterReadRecordDto.class,"sc_meter_read_record");
|
|
|
+ if(childMap.size() > 0){
|
|
|
+ for (int i=0;i<childMap.size();i++){
|
|
|
+ meterReadRecordHashMap.put(childMap.get(i).getDeviceId(),childMap.get(i));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //------------------------>
|
|
|
return stringList;
|
|
|
}
|
|
|
|